tor-browser

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

select-unselectable-text-ref.html (299B)


      1 <!doctype html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <style>
      6 span::selection {
      7  background-color: transparent;
      8  color: currentColor;
      9 }
     10 </style>
     11 </head>
     12 <body>
     13  <div><span>ABC</span></div>
     14  <script>
     15    getSelection().selectAllChildren(document.querySelector("div"));
     16  </script>
     17 </body>
     18 </html>