tor-browser

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

backward.html (319B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4  <script type="text/javascript">
      5  "use strict";
      6  window.onload = function()
      7  {
      8    window.setTimeout(function()
      9    {
     10      SpecialPowers.wrap(window).docShell
     11        .QueryInterface(SpecialPowers.Ci.nsIWebNavigation)
     12        .goBack();
     13    }, 100);
     14  };
     15 
     16  </script>
     17 </head>
     18 </html>