tor-browser

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

1418722-1.html (645B)


      1 <html class="reftest-wait">
      2 <body>
      3  <div style="width:200px; height:200px; perspective:1000px">
      4    <div style="width:200px; height:200px; transform:translateZ(2px); background-color:green" id="transformed"></div>
      5  </div>
      6  <div style="width: 200px; height:200px; background-color:red" id="helper"></div>
      7 </body>
      8 <script>
      9  function doTest() {
     10    var element = document.getElementById("transformed");
     11    element.parentNode.removeChild(element);
     12    document.getElementById("helper").style.backgroundColor = "blue";
     13    document.documentElement.className = "";
     14  }
     15  window.addEventListener("MozReftestInvalidate", doTest);
     16 </script>
     17 </html>