navigation-changed-iframe.html (340B)
1 <html> 2 <head> 3 <script> 4 function fireSentinel() 5 { 6 document.getElementsByTagName('h4')[0].innerHTML = document.domain; 7 opener.postMessage("NAVIGATED", "*"); 8 } 9 </script> 10 </head> 11 <body onload="fireSentinel();"> 12 <h4>DOMAIN</h4> 13 <p>PASSED: Navigation succeeded.</p> 14 </body> 15 </html>