tor-browser

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

testUrl2_bfcache.html (282B)


      1 <script>
      2 onpageshow = function(e) {
      3  var bc2 = new BroadcastChannel("testUrl2_bfcache");
      4  bc2.onmessage = function(event) {
      5    if (event.data == "back") {
      6      bc2.close();
      7      history.back();
      8    }
      9  };
     10  bc2.postMessage({type: e.type, persisted: e.persisted});
     11 };
     12 </script>