tor-browser

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

1449601.html (400B)


      1 <!DOCTYPE html>
      2 <html>
      3  <body>
      4    <script>
      5      var blob = new Blob(["foo"], { type: "text/plain" });
      6      var url = URL.createObjectURL(blob);
      7      var ifr = document.createElement("iframe");
      8      ifr.src = url;
      9      document.body.appendChild(ifr);
     10 
     11      onload = function() {
     12        try { window.find('foo',false,true,true,true,true) } catch(e) { }
     13      }
     14    </script>
     15  </body>
     16 </html>