summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/webappapis/dynamic-markup-insertion/document-write/module-delayed-iframe.html
blob: f97f597238e2a461273e2f10e1eaae0cac2114a6 (plain)
1
2
3
4
5
6
7
8
9
<!doctype html>
<script type=module>
window.parent.document.test.step_timeout(() => {
  document.write("document.write body contents\n")
  document.close();
  window.parent.document.dispatchEvent(new CustomEvent("documentWriteDone"));
}, 0);
</script>
Initial body contents