1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16

content / test / data / accessibility / event / focus-listbox.html [blame]

<!DOCTYPE html>
<html>
<body>
  <select size="3">
    <option>a</option>
    <option selected>b</option>
    <option>ç</option>
  </select>
  <script>
    function go() {
      document.querySelector('select').focus();
      document.querySelector('select').selectedIndex = 2;
    }
  </script>
</body>
</html>