tor-browser

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

nested-post-to-opener.html (234B)


      1 <body>
      2 <script>
      3  var i = document.createElement("iframe");
      4  i.name = "nested1";
      5  document.body.appendChild(i);
      6 
      7  window.opener.postMessage({
      8    "name": window.name,
      9    "isTop": window.top === window
     10  }, "*");
     11 </script>
     12 </body>