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" tabIndex="0" aria-activedescendant="3">
     10   <div id="1" aria-label="1" role="option">Item 1</div>
     11   <div id="2" aria-label="2" role="option">Item 2</div>
     12   <div id="3" aria-label="3" role="option">Item 3</div>
     13 </div>
     14 <script>document.querySelector('*[role="listbox"]').focus();</script>
     15 </body>
     16 </html>
     17