tor-browser

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

zero-opacity-animation.html (409B)


      1 <!DOCTYPE HTML>
      2 <html class="reftest-wait">
      3 <body>
      4 <div style="opacity:0">
      5  <div id="d" class="reftest-no-paint" style="height:50px; border:2px solid black"></div>
      6 </div>
      7 <script type="application/javascript">
      8 function doTest() {
      9  d.style.border = "2px solid green";
     10  document.documentElement.removeAttribute("class");
     11 }
     12 document.addEventListener("MozReftestInvalidate", doTest);
     13 </script>
     14 </body>
     15 </html>