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

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

<!--
@MAC-ALLOW:AXRoleDescription
@WIN-ALLOW:ia2_hypertext=*
@WIN-ALLOW:xml-roles*
@BLINK-ALLOW:setSize*
@BLINK-ALLOW:posInSet*
-->
<html>
<body>
<div role="listbox" onclick="console.log('hi')">
  <div tabIndex="0" role="option">Item 1</div>
  <div tabIndex="1" role="option">Item 2</div>
  <div role="separator"></div>
  <div tabIndex="2" role="option">Second group item 1</div>
  <div tabIndex="3" role="option">Second group item 2</div>
</div>
</body>
</html>