tor-browser

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

viewport-scrollbar-color-change.html (378B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3 <style>
      4  html {
      5    overflow: scroll;
      6    scrollbar-color: green green;
      7  }
      8  html.reftest-wait {
      9    scrollbar-color: red red;
     10  }
     11 </style>
     12 <div style="width: 200vw; height: 200vh"></div>
     13 <script>
     14  window.addEventListener("MozAfterPaint", function() {
     15    document.documentElement.classList.remove("reftest-wait");
     16  });
     17 </script>