tor-browser

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

activeelement-after-immediately-focusing-same-site-iframe-inner.html (328B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4    <meta charset="utf-8">
      5    <title>Inner document</title>
      6 </head>
      7 <body>
      8 <h1>Inner</h1>
      9 <script>
     10 document.body.onfocus = function() {
     11    parent.postMessage("innerbodyfocus,", "*");
     12 }
     13 document.body.onblur = function() {
     14    parent.postMessage("innerbodyblur,", "*");
     15 }
     16 </script>
     17 </body>
     18 </html>