blob: 894b7b28414c381defd1ba062cf1267f0d809d05 [file] [log] [blame]
<html>
<head>
<title>document.open</title>
</head>
<body onLoad="mainFunc();">
<script>
function mainFunc() {
if (window.layoutTestController)
layoutTestController.dumpAsText();
document.open();
document.write("will not be visible<br>");
document.close();
for (i = 0; i < 5; i++) {
document.open();
document.write("There should be only one line of text here. <a href=\'http://bugzilla.opendarwin.org/show_bug.cgi?id=4395\'>Bug 4395</a><br>");
}
}
</script>
</body>
</html>