tor-browser

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

document.open-03-frame.html (234B)


      1 <!DOCTYPE html>
      2 <script>
      3 onload = function() {
      4  document.open();
      5  document.close();
      6  parent.report(window.setTimeout === setTimeout, true, "setTimeout");
      7  parent.report(window === this, true, "this");
      8  parent.done();
      9 }
     10 </script>