tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

div-haswarn.html (612B)


      1 <!DOCTYPE html>
      2 <html>
      3   <head>
      4      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      5      <title>Div with role="combobox" and aria-autocomplete="list"</title>
      6   </head>
      7   <body>
      8   	<div role="combobox" aria-expanded="true" aria-label="Tag"
      9   		aria-autocomplete="list" aria-activedescendant="selected_option">
     10   	   <input type="text" role="textbox" aria-owns="owned_listbox">
     11   	   <ul role="listbox" id="owned_listbox">
     12   	   	   <li role="option">Zebra</li>
     13   		   <li role="option" id="selected_option" aria-selected="true">Zoom</li>
     14   	   </ul>
     15   	</div>
     16   </body>
     17 </html>