activeelement-after-immediately-focusing-different-site-iframe-inner-contentwindow.html (424B)
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 // Commented out pending resolution of 12 // https://github.com/whatwg/html/issues/6209 13 // parent.postMessage("innerbodyfocus,", "*"); 14 } 15 document.body.onblur = function() { 16 parent.postMessage("innerbodyblur,", "*"); 17 } 18 </script> 19 </body> 20 </html>