tor-browser

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

1719346-1.html (653B)


      1 <!DOCTYPE html>
      2 <html lang="en" class="reftest-wait">
      3 <head>
      4 <style>
      5 .main {
      6 border-image: url('1719346-1.gif') 16 fill / 16px / 0 repeat;
      7 width: 100px;
      8 height: 100px;
      9 }
     10 
     11 #mover {
     12 position: fixed;
     13 padding: 0;
     14 margin: 0;
     15 bottom: 0;
     16 top: 250px;
     17 left: 250px;
     18 }
     19 </style>
     20 </head>
     21 <body>
     22 <div class="main"></div>
     23 <div id="mover">text</div>
     24 
     25 <script>
     26 function doTest() {
     27 	var elem = document.getElementById("mover");
     28 	elem.style.top = "100px";
     29 	document.documentElement.removeAttribute("class");
     30 }
     31 document.addEventListener("MozReftestInvalidate", doTest);
     32 setTimeout(doTest, 5000);
     33 </script>
     34 </body>
     35 </html>