tor-browser

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

file_bug1745638.html (390B)


      1 <!DOCTYPE html>
      2 <script>
      3  function go() {
      4      var doc = document.getElementById("testFrame").contentWindow.document;
      5      doc.open();
      6      doc.close();
      7      doc.body.innerText = "passed";
      8  }
      9 </script>
     10 <body onload="setTimeout(opener.pageLoaded);">
     11 The iframe below should not be blank after a reload.<br>
     12 <iframe src="about:blank" id="testFrame"></iframe>
     13 <script>
     14  go();
     15 </script>