tor-browser

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

script-not-executed-after-shutdown-child.html (367B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>Script is not executed after script thread is shutdown</title>
      4 <script>
      5 onload = function() {
      6  script_executed = parent.script_executed;
      7  s = document.createElement('script');
      8  s.type = 'text/javascript';
      9  s.src = 'script-not-executed-after-shutdown.js?pipe=trickle(d3)';
     10  document.body.appendChild(s);
     11 };
     12 </script>