blob: 3fc4f6721e5dda2b03eede20291c8a9e6a71cf73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<HTML>
<BODY>
<p>This tests that document.write() with no parameters does not output any text. See bug 815592. </p>
<p>There should not be any text below this sentence.</p>
<script>
if (window.testRunner)
testRunner.dumpAsText();
document.write()
</script>
</BODY>
</HTML>
|