tor-browser

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

1003425-1.html (367B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3 <style>
      4 div {
      5  width: 500px;
      6  height: 500px;
      7  opacity: 0.5;
      8  box-shadow: 0 0 40px #000;
      9 }
     10 </style>
     11 <div id="d"></div>
     12 <script>
     13 function doTest() {
     14  document.getElementById("d").style.opacity = 1;
     15  document.documentElement.removeAttribute("class");
     16 }
     17 window.addEventListener("MozReftestInvalidate", doTest);
     18 </script>