tor-browser

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

386939-1.html (409B)


      1 <html class="reftest-wait">
      2 <head>
      3 <script>
      4 
      5 function rM(n)
      6 {
      7  n.remove();
      8 }
      9 
     10 function boom()
     11 {
     12  rM(document.getElementById("f1"));
     13  rM(document.getElementById("f2"));
     14  document.documentElement.removeAttribute("class");
     15 }
     16 </script>
     17 </head>
     18 
     19 <frameset rows="170,*" onload="setTimeout(boom, 30);">
     20 <frame src="data:text/html,frame1" id="f1">
     21 <frame src="data:text/html,frame2" id="f2">
     22 </frameset>
     23 
     24 </html>