tor-browser

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

1551053-1.html (560B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3 <head>
      4 <meta http-equiv="content-type" content="text/html; charset=utf-8">
      5 <style>
      6 .will-merge {
      7  opacity: 0.5;
      8 }
      9 </style>
     10 </head>
     11 
     12 <body>
     13 <span id="foo">foo</span>
     14 <span class="will-merge">bar<br>baz</span>
     15 <span>qux</span>
     16 <script type="text/javascript">
     17 function doTest() {
     18  var e = document.getElementById("foo");
     19  e.parentNode.removeChild(e);
     20  document.documentElement.removeAttribute("class");
     21 }
     22 
     23 window.addEventListener("MozReftestInvalidate", doTest);
     24 setTimeout(doTest, 5000);
     25 </script>
     26 </body>
     27 </html>