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

content / test / data / accessibility / aria / aria-selected.html [blame]

<!--
@MAC-ALLOW:AXSelected=*
@MAC-ALLOW:AXSelectedChildren=*
@WIN-ALLOW:SELECTED
@AURALINUX-ALLOW:select*
-->
<html>
<body>
<div role="listbox" onclick="console.log('hi')">
  <div tabIndex="-1" aria-selected="true" aria-label="1" role="option">Item 1</div>
  <div tabIndex="-1" aria-selected="false" aria-label="2" role="option">Item 2</div>
</div>
</body>
</html>