tor-browser

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

select-unselectable-span-1.html (394B)


      1 <!doctype html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <link rel="match" href="select-unselectable-span-1-ref.html">
      6 </head>
      7 <body>
      8  <!-- Accessible carets should be put around the <span> having big padding -->
      9  <div><span style="user-select:none;padding:100px">ABC</span></span></div>
     10  <script>
     11    getSelection().selectAllChildren(document.querySelector("div"));
     12  </script>
     13 </body>
     14 </html>