tor-browser

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

file_bug1450164.html (373B)


      1 <html>
      2  <head>
      3    <script>
      4     function go() {
      5       var a = window.history.state;
      6       window.history.replaceState(a, "", "1");
      7       var ok = opener.ok;
      8       var SimpleTest = opener.SimpleTest;
      9       ok("Addition of history in unload did not crash browser");
     10       SimpleTest.finish();
     11     }
     12    </script>
     13  </head>
     14  <body onunload="go()">
     15  </body>
     16 </html>