tor-browser

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

doc_accessibility.html (557B)


      1 <!DOCTYPE HTML>
      2 <html>
      3  <head>
      4    <meta charset="utf-8">
      5  </head>
      6 <body>
      7  <h1 id="h1">Accessibility Test</h1>
      8  <button id="button" aria-describedby="h1" accesskey="b">Accessible Button</button>
      9  <div id="slider" role="slider" aria-valuenow="5"
     10       aria-valuemin="0" aria-valuemax="7">slider</div>
     11  <label id="label" for="control">Label
     12    <input id="control" aria-details="details">
     13  </label>
     14  <div id="details">details</div>
     15  <header id="header">header</header>
     16  <nav id="nav">nav</nav>
     17  <footer id="footer">footer</footer>
     18 </body>
     19 </html>