summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/dom/dynamic-markup-insertion/opening-the-input-stream/002.html
blob: 42f6c580cae4ad5d298e7fcf62e2b9a80c3e569e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!doctype html>
<title>document.open during parsing</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
test(function() {
 var log = document.getElementById("log");
 document.open()
 assert_equals(document.getElementById("log"), log)
})
</script>