focus-next-tick-before-iframe-loaded-different-site-inner.html (350B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>focus() from next tick before iframe loaded different site</title> 6 </head> 7 <body> 8 <script> 9 window.onload = function() { 10 parent.postMessage("onload", "*"); 11 } 12 document.body.onfocus = function() { 13 parent.postMessage("onfocus", "*"); 14 } 15 </script> 16 </body> 17 </html>