tor-browser

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

file_bug1281071.html (257B)


      1 <!DOCTYPE html>
      2 <script>
      3  function tryLocationGet() {
      4    var desc = Object.getOwnPropertyDescriptor(window, "location");
      5    try {
      6      desc.get.call(parent);
      7      return "get succeeded";
      8    } catch (e) {
      9      return e.message;
     10    }
     11  }
     12 </script>
     13