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

Initial body contents