tor-browser

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

selection-image-002.html (558B)


      1 <!doctype html>
      2 <title>CSS Test: Image and text selection is painted.</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 <link rel="mismatch" href="selection-image-001-no-selection-noref.html">
      6 <p>
      7  Some text <img src="resources/blue15x15.png"> some more.
      8 </p>
      9 <script>
     10 onload = () => {
     11  getSelection().removeAllRanges();
     12  let r = document.createRange();
     13  r.selectNode(document.documentElement);
     14  getSelection().addRange(r);
     15 }
     16 </script>