summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/webappapis/dynamic-markup-insertion/document-write/047.html
blob: 677d3e17869f5c8fc744464c6e2c7e7bf51ebab6 (plain)
1
2
3
4
5
6
7
8
9
10
11
<!doctype html>
<title>document.write</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
var win;
var t = async_test(() => {
  win = window.open("047-1.html");
});
t.add_cleanup(() => win.close());
</script>