1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26

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

<!DOCTYPE html>
<html>
<body>
<select>
  <option selected>Apple</option>
  <option>Orange</option>
  <option>Banana</option>
</select>
<script>
  const go_passes = [
    () => {
      document.querySelector('select').focus();
    },
    () => {
      document.querySelector('select').selectedIndex = 1;
    }
  ];

  let current_pass = 0;
  function go() {
    go_passes[current_pass++].call();
    return current_pass < go_passes.length;
  }
</script>
</body>
</html>