tor-browser

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

1475971-1.html (486B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3 <style>
      4 div {
      5  width: 200px;
      6  height: 200px;
      7 }
      8 </style>
      9 
     10 <div style="position:fixed;">
     11  <div style="transform:translateX(50px);">
     12    <div id="resize" style="background-color:blue;">
     13    </div>
     14  </div>
     15 </div>
     16 
     17 <script>
     18  function doTest() {
     19    document.getElementById("resize").style.width = "300px";
     20    document.documentElement.removeAttribute("class");
     21  }
     22  window.addEventListener("MozReftestInvalidate", doTest);
     23 </script>
     24 </html>