tor-browser

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

1533317-1.html (675B)


      1 <html class="reftest-wait">
      2  <head>
      3    <style>
      4    div {
      5      width: 200px;
      6      height: 200px;
      7    }
      8    .positioned {
      9      position: absolute;
     10      top: 0px;
     11      left: 200px;
     12      background-color: green;
     13    }
     14    .outer {
     15      position: relative;
     16    }
     17    </style>
     18  </head>
     19  <body>
     20    <div class="outer">
     21      <div id="test"></div>
     22      <div class="positioned"></div>
     23    </div>
     24    <script>
     25      function doTest() {
     26        document.getElementById("test").style.backgroundColor = "green";
     27        document.documentElement.removeAttribute("class");
     28      }
     29      document.addEventListener("MozReftestInvalidate", doTest);
     30    </script>
     31  </body>
     32 </html>