tor-browser

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

1743533-1-helper.html (397B)


      1 <html>
      2 <head>
      3 <style>
      4 :root { color-adjust: exact }
      5 html { background: green; }
      6 </style>
      7 </head>
      8 <body>
      9 <!-- just need some content with large height, use text because bg colors don't print by default -->
     10 <script>
     11 for (let i = 0; i < 1000; i++) {
     12 document.body.appendChild(document.createTextNode("content"));
     13 document.body.appendChild(document.createElement("br"));
     14 }
     15 </script>
     16 </body>
     17 </html>