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

content / test / data / accessibility / html / select-open.html [blame]

<!--
@BLINK-ALLOW:focus*
@BLINK-ALLOW:setSize*
@BLINK-ALLOW:posInSet*
@BLINK-ALLOW:haspopup*
@BLINK-ALLOW:expanded
@DEFAULT-ACTION-ON:Fruit expanded
-->
<html>
<body>
  <select aria-label="Animal collapsed">
    <option value="">Eggplant</option>
    <option value="1">Broccolini</option>
    <option value="2">Rutabaga</option>
  </select>
  <select aria-label="Fruit expanded">
    <option value="1">Orange</option>
    <option value="2" selected>Mango</option>
    <option value="3">Star fruit</option>
  </select>
</body>
</html>