summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/dom/dynamic-markup-insertion/document-write/iframe_001.html
blob: 8b54560c6ce5094dd45d661d1a9c3f73db016c7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!doctype html>
<title>document.write into iframe</title>
<script src="/resources/testharness.js"></script><script src="/resources/testharnessreport.js"></script>
<iframe id="test"></iframe>
<script>
test(
function() {
  var iframe = document.getElementById("test");
  iframe.contentDocument.write("Filler Text");
  iframe.contentDocument.close();
  assert_equals(iframe.contentDocument.body.textContent, "Filler Text");
});
</script>
<div id="log"></div>