tor-browser

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

blank.html (297B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3  <head>
      4    <meta charset="utf-8">
      5    <title>Blank</title>
      6  </head>
      7  <body onload="notifyOnload();">
      8    <script type="application/javascript">
      9    function notifyOnload() {
     10      opener.postMessage({event: 'load'}, '*');
     11    }
     12    </script>
     13  </body>
     14 </html>