tor-browser

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

selection-image-001-noref.html (457B)


      1 <!doctype html>
      2 <title>CSS Test Reference</title>
      3 <link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
      4 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1449010">
      5 <p>
      6  Some text <img src="resources/blue15x15.png"> some more.
      7 </p>
      8 <script>
      9 onload = () => {
     10  getSelection().removeAllRanges();
     11  let r = document.createRange();
     12  r.selectNode(document.documentElement);
     13  getSelection().addRange(r);
     14 }
     15 </script>