tor-browser

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

iframe-focuses-parent-different-site-inner.html (301B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <title>iframe focuses parent different site inner</title>
      6 </head>
      7 <body>
      8 <script>
      9 window.onmessage = function() {
     10    parent.focus();
     11    setTimeout(function() {
     12        parent.postMessage("finished", "*");
     13    }, 500);
     14 }
     15 </script>
     16 </body>
     17 </html>