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

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

<!DOCTYPE html>
<html>
<body>
<select size=3>
  <option selected>Apple</option>
  <option>Orange</option>
  <option>Banana</option>
</select>
<script>
  document.querySelector('select').focus();
  function go() {
    document.querySelector('select').selectedIndex = 1;
  }
</script>
</body>
</html>