summaryrefslogtreecommitdiffstats
path: root/WebCore/manual-tests/write-after-open.html
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/manual-tests/write-after-open.html')
-rw-r--r--WebCore/manual-tests/write-after-open.html42
1 files changed, 0 insertions, 42 deletions
diff --git a/WebCore/manual-tests/write-after-open.html b/WebCore/manual-tests/write-after-open.html
deleted file mode 100644
index e4c2f4b..0000000
--- a/WebCore/manual-tests/write-after-open.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<html>
-<body>
-<script>
-i = 0;
-windowArgs = "top=100, left=100, height=200, width=200";
-windowName = "";
-
-w = window.open("", windowName + i++, windowArgs);
-w.document.write("PASS: document.write after window.open(\"\", ...) worked.");
-w.document.close();
-
-w = window.open("", windowName + i++, windowArgs);
-w.document.open();
-w.document.write("PASS: document.write after window.open(\"\", ...) worked.");
-w.document.close();
-
-
-w = window.open("about:blank", windowName + i++, windowArgs);
-w.document.write("PASS: document.write after window.open(\"about:blank\", ...) worked.");
-w.document.close();
-
-w = window.open("about:blank", windowName + i++, windowArgs);
-w.document.open();
-w.document.write("PASS: document.write after window.open(\"about:blank\", ...) worked.");
-w.document.close();
-
-
-w = window.open("resources/write-after-open-popup.html", windowName + i++, windowArgs);
-w.document.write("PASS: document.write after window.open(\"resources/write-after-open-popup.html\", ...) worked.");
-w.document.close();
-
-w = window.open("resources/write-after-open-popup.html", windowName + i++, windowArgs);
-w.document.open();
-w.document.write("PASS: document.write after window.open(\"resources/write-after-open-popup.html\", ...) worked.");
-w.document.close();
-</script>
-
-<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>
-
-<p>On success, 6 windows will open, one on top of the other, each containing a PASS message.</p>
-</body>
-</html>