tor-browser

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

1448841-1.html (768B)


      1 <html class="reftest-wait">
      2 <body>
      3  <div style="width:500px; height:500px; overflow:scroll; border:1px black solid;">
      4    <div id="change" style="width:100px; height:100px; background-color:green; position:relative; top:50px; left:50px"></div>
      5    <div style="width:100px; height:100px; background-color:red; z-index:2; position:relative; left:200px"></div>
      6    <div style="height:1000px"></div>
      7  </div>
      8  <div style="width:100px; height:100px; background-color:blue; z-index:1; position:relative; top:-400px"></div>
      9 </body>
     10 <script>
     11  function doTest() {
     12    document.getElementById("change").style.backgroundColor = "orange";
     13    document.documentElement.removeAttribute("class");
     14  }
     15  document.addEventListener("MozReftestInvalidate", doTest);
     16 </script>
     17 </html>