tor-browser

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

retained-dl-frame-created-1.html (547B)


      1 <html class="reftest-wait">
      2 <head>
      3 <style>
      4  div {
      5    width:10px;
      6    height:10px;
      7    background-color:green;
      8    display: inline-block;
      9  }
     10 </style>
     11 </head>
     12 <body id="body">
     13  <div id="first" class="reftest-no-display-list"></div>
     14 </body>
     15 <script>
     16 function doTest() {
     17  var div = document.createElement("div");
     18  var prev = document.getElementById("first");
     19  prev.parentNode.insertBefore(div, prev.nextSibling);
     20  document.documentElement.removeAttribute("class");
     21 }
     22 
     23 window.addEventListener("MozReftestInvalidate", doTest);
     24 </script>
     25 </html>