5 windowArgs
= "top=100, left=100, height=200, width=200";
8 w
= window
.open("", windowName
+ i
++, windowArgs
);
9 w
.document
.write("PASS: document.write after window.open(\"\", ...) worked.");
12 w
= window
.open("", windowName
+ i
++, windowArgs
);
14 w
.document
.write("PASS: document.write after window.open(\"\", ...) worked.");
18 w
= window
.open("about:blank", windowName
+ i
++, windowArgs
);
19 w
.document
.write("PASS: document.write after window.open(\"about:blank\", ...) worked.");
22 w
= window
.open("about:blank", windowName
+ i
++, windowArgs
);
24 w
.document
.write("PASS: document.write after window.open(\"about:blank\", ...) worked.");
28 w
= window
.open("resources/write-after-open-popup.html", windowName
+ i
++, windowArgs
);
29 w
.document
.write("PASS: document.write after window.open(\"resources/write-after-open-popup.html\", ...) worked.");
32 w
= window
.open("resources/write-after-open-popup.html", windowName
+ i
++, windowArgs
);
34 w
.document
.write("PASS: document.write after window.open(\"resources/write-after-open-popup.html\", ...) worked.");
38 <p>This test checks for regression against:
<rdar://problem/
3461547> can't use document.writeln() on windows opened via window.open(
"about:blank") in same function.
</p>
40 <p>On success,
6 windows will open, one on top of the other, each containing a PASS message.
</p>