tor-browser

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

test-print-selection-leading-trailing-whitespace.html (475B)


      1 <!DOCTYPE html>
      2 <html reftest-print-range="selection">
      3 <head>
      4  <meta charset="utf-8">
      5  <link href="print.css" rel="stylesheet">
      6  <script>
      7    function selectNonWhitespaceText() {
      8      window.getSelection()
      9        .setBaseAndExtent(
     10          selection.firstChild,
     11          2,
     12          selection.firstChild,
     13          35);
     14    }
     15  </script>
     16 </head>
     17 <body onload="selectNonWhitespaceText()">
     18  <p id="selection">  This text should appear on page 1  </p>
     19 </body>
     20 </html>