tor-browser

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

1550881-2.html (348B)


      1 <!DOCTYPE html>
      2 <iframe srcdoc="<iframe></iframe>"></iframe>
      3 <script>
      4  onload = function() {
      5      parent = frames[0];
      6      child = parent[0];
      7      child.onunload = function() {
      8          parent.document.open();
      9          parent.document.write("Nested");
     10      }
     11      parent.document.open();
     12      parent.document.write("Hello");
     13  }
     14 </script>