tor-browser

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

325730-1.html (423B)


      1 <html>
      2 
      3 <head>
      4 
      5 <script>
      6 
      7 function init()
      8 {
      9  document.addEventListener("DOMNodeRemoved", meep);
     10  document.body.appendChild(document.getElementById("b"));
     11 
     12  function meep()
     13  {
     14    document.removeEventListener("DOMNodeRemoved", meep);
     15    document.body.removeChild(document.getElementById("c"));
     16  }
     17 }
     18 
     19 window.addEventListener("load", init);
     20 
     21 
     22 </script>
     23 
     24 </head>
     25 
     26 <body><div id="b"></div><div id="c"></div></body>
     27 </html>