tor-browser

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

include-11.js (193B)


      1 log("external script before adding iframe");
      2 var iframe = document.createElement("iframe");
      3 iframe.srcdoc = "<script>parent.log('script in iframe')</script>"
      4 document.body.appendChild(iframe);