summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/parser/document-write-into-initial-document.html
blob: 1d0c6fcc4d7792572034a9eb1abdf53f5036a64b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<script>
if (window.testRunner)
    testRunner.dumpAsText();

function runTest() {
    var text = document.getElementById('iframe').contentDocument.documentElement.outerText;
    result.innerHTML = text;
}
</script>
<setvar id="result">
<script>
document.write('<iframe id="iframe" src="data:text/plain,FAIL" onload="runTest()">')
var oRTE = frames[0].document; 
oRTE.write("PASS");
oRTE.close();
</script>