summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/dom/dynamic-markup-insertion/document-write/script_001.html
blob: 43c7adb4d4dcc151ba0da94c935cc6ff55dba02f (plain)
1
2
3
4
5
6
7
8
9
10
<!doctype html>
<title>document.write script</title>
<script src="/resources/testharness.js"></script><script src="/resources/testharnessreport.js"></script>
<script>
var t = async_test();
t.step(function() {
  document.write("<script>t.done();<"+"/script>");
});
</script>
<div id="log"></div>