tor-browser

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

select-unselectable-text.html (291B)


      1 <!doctype html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <link rel="match" href="select-unselectable-text-ref.html">
      6 </head>
      7 <body>
      8  <div><span style="user-select:none">ABC</span></div>
      9  <script>
     10    getSelection().selectAllChildren(document.querySelector("div"));
     11  </script>
     12 </body>
     13 </html>