tor-browser

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

retained-dl-frame-deleted-1.html (563B)


      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><div id="second" class="reftest-no-display-list"></div><div id="third"></div>
     14 </body>
     15 <script>
     16 function doTest() {
     17  var elem = document.getElementById("third");
     18  elem.parentNode.removeChild(elem);
     19  document.documentElement.removeAttribute("class");
     20 }
     21 
     22 window.addEventListener("MozReftestInvalidate", doTest);
     23 </script>
     24 </html>