tor-browser

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

prompt-and-unload-script-uncloseable-1.html (182B)


      1 <!doctype html>
      2 script-uncloseable-1
      3 <script>
      4 onbeforeunload = function() {
      5  parent.beforeunload_fired = true;
      6 };
      7 onunload = function() {
      8  parent.unload_fired = true;
      9 };
     10 </script>