tor-browser

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

reftest_wait_0-print.html (350B)


      1 <html class="reftest-wait">
      2 <title>Test with reftest-wait</title>
      3 <link rel=match href=green.html>
      4 <style>
      5  :root {
      6    print-color-adjust: exact;
      7    background-color:red
      8  }
      9 </style>
     10 <script>
     11 setTimeout(function() {
     12  document.documentElement.style.backgroundColor = "green";
     13  document.documentElement.className = "";
     14 }, 2000);
     15 </script>
     16 </html>