tor-browser

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

background-color.html (529B)


      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 #target {
      9  width: 100px;
     10  height: 100px;
     11  background-color: black;
     12 }
     13 </style>
     14 <div id="target"></div>
     15 <script>
     16 document.addEventListener("MozReftestInvalidate", () => {
     17  target.style.animation = "anim 100s step-end reverse";
     18  target.addEventListener("animationstart", () => {
     19    document.documentElement.classList.remove("reftest-wait");
     20  });
     21 });
     22 </script>
     23 </html>