Home | History | Annotate | Download | only in accessibility
      1 <!--
      2 @MAC-ALLOW:AXSubrole*
      3 @MAC-ALLOW:AXOrientation*
      4 @MAC-ALLOW:AXSelectedChildren*
      5 @MAC-ALLOW:AXVisibleChildren*
      6 -->
      7 <html>
      8 <body>
      9 <div role="listbox">
     10   <div tabIndex="-1" aria-label="1" role="option">Item 1</div>
     11   <div tabIndex="0" aria-label="2" role="option">Item 2</div>
     12   <div tabIndex="-1" aria-label="3" role="option">Item 3</div>
     13 </div>
     14 <script>document.querySelector('*[aria-label="2"]').focus();</script>
     15 </body>
     16 </html>
     17