module-tla-promise-iframe.html (311B)
1 <!doctype html> 2 <script type=module> 3 await new Promise(resolve => { 4 window.parent.document.test.step_timeout(resolve, 0); 5 document.write("document.write body contents\n"); 6 document.close(); 7 window.parent.document.dispatchEvent(new CustomEvent("documentWriteDone")); 8 }); 9 </script> 10 11 Initial body contents