summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/dom/dynamic-markup-insertion/document-write/048.html
blob: 51faf6c85f18e37422b22ec8babd491f9da523c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!doctype html>
<title>document.write</title>
<script src="/resources/testharness.js"></script><script src="/resources/testharnessreport.js"></script>
<script>
var t = async_test();
onload = function() {
  t.step(function() {
    document.write("<body>Filler Text<div id='log'></div>");
    assert_equals(document.body.textContent, "Filler Text");
  });
  t.done();
};
</script>
<body>FAIL
<div id="log"></div>