tor-browser

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

WorkerLocation.js (365B)


      1 var obj = new Object();
      2 obj.location = location.toString();
      3 obj.href     = location.href;
      4 obj.origin   = location.origin;
      5 obj.protocol = location.protocol;
      6 obj.host     = location.host;
      7 obj.hostname = location.hostname;
      8 obj.port     = location.port;
      9 obj.pathname = location.pathname;
     10 obj.search   = location.search;
     11 obj.hash     = location.hash;
     12 
     13 postMessage(obj);