tor-browser

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

iframe1_bug1640766.html (450B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4 <title>Iframe 1 for Bug 1640766</title>
      5 </head>
      6 <body>
      7 <div>Iframe 1</div>
      8 <script type="application/javascript">
      9 if (parent == window) {
     10  let iframe = document.createElement("iframe");
     11  iframe.src = "http://example.org/tests/dom/base/test/iframe2_bug1640766.html";
     12  document.body.appendChild(iframe);
     13 } else {
     14  window.onload = function() {
     15    top.opener.postMessage("ready", "*");
     16  };
     17 }
     18 </script>
     19 </body>
     20 </html>