tor-browser

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

883568-1.html (523B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3 <head>
      4 <style>
      5 #wrapper {
      6  overflow: hidden;
      7 }
      8 #testDiv1 {
      9  width: 500px;
     10  height: 100px;
     11  position: relative;
     12  overflow: hidden;
     13 }
     14 </style>
     15 <script>
     16 window.addEventListener("MozReftestInvalidate", function() {
     17  testDiv1.style.left = "-500px";
     18  testDiv1.style.transform = "translateX(500px)";
     19  document.documentElement.removeAttribute("class");
     20 });
     21 </script>
     22 </head>
     23 <body>
     24 <div id="wrapper">
     25  <div id="testDiv1" style="background:yellow;"></div>
     26 </div>
     27 </body>
     28 </html>