tor-browser

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

test-selectable.html (515B)


      1 <!doctype html>
      2 <html>
      3  <head>
      4    <meta charset="utf-8" />
      5  </head>
      6  <body>
      7    <ul style="list-style-type: none" role="listbox">
      8      <li
      9        id="li"
     10        role="option"
     11        onclick="this.setAttribute('aria-selected',
     12          this.getAttribute('aria-selected') == 'true' ? 'false' : 'true')"
     13      >
     14        1
     15      </li>
     16      <li role="option" aria-selected="false">2</li>
     17    </ul>
     18    <li id="outsideSelectable" role="option" tabindex="0">
     19      outside selectable
     20    </li>
     21  </body>
     22 </html>