document-open-cancels-javascript-url-navigation.html (473B)
1 <body> 2 <script src="/resources/testharness.js"></script> 3 <script src="/resources/testharnessreport.js"></script> 4 <script> 5 async_test(t => { 6 window.onload = t.step_func_done(() => assert_equals(i.contentDocument.body.innerText, "PASS")); 7 8 var i = document.createElement('iframe'); 9 i.id ='i'; 10 i.src = "javascript:'FAIL'"; 11 document.body.appendChild(i); 12 i.contentDocument.open(); 13 i.contentDocument.write("PASS") 14 i.contentDocument.close(); 15 }); 16 </script> 17 </body>