tor-browser

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

background-color-on-html.html (505B)


      1 <!DOCTYPE HTML>
      2 <html class="reftest-wait reftest-no-flush">
      3 <style>
      4 @keyframes anim {
      5  from { background-color: green; }
      6  to { background-color: red; }
      7 }
      8 html {
      9  background-color: black;
     10 }
     11 </style>
     12 <script>
     13 document.addEventListener("MozReftestInvalidate", () => {
     14  document.documentElement.style.animation = "anim 100s step-end reverse";
     15  document.documentElement.addEventListener("animationstart", () => {
     16    document.documentElement.classList.remove("reftest-wait");
     17  });
     18 });
     19 </script>
     20 </html>