tor-browser

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

url-frame.html (184B)


      1 <script>
      2 onload = () => {
      3  const beforeURL = document.URL;
      4  document.open();
      5  const afterURL = document.URL;
      6  document.close();
      7  parent.testDone(beforeURL, afterURL);
      8 }
      9 </script>