tor-browser

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

frame_recursive_dynamic.html (316B)


      1 <script>
      2  addEventListener("load", () => {
      3    let e = document.createElement("iframe");
      4    e.id = "dynamic";
      5    document.body.appendChild(e); // append before setting source, forcing load of about:blank
      6    e.src = window.location.href; // set src to ourselves to start recursing
      7  }, { once: true });
      8 </script>