Index: LayoutTests/fast/dom/Window/open-window-min-size.html |
diff --git a/LayoutTests/fast/dom/Window/open-window-min-size.html b/LayoutTests/fast/dom/Window/open-window-min-size.html |
deleted file mode 100644 |
index 0f70cc3733ce7611fd7a57b75526ffeb81d034ee..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/dom/Window/open-window-min-size.html |
+++ /dev/null |
@@ -1,33 +0,0 @@ |
-<html> |
-<head> |
-<script src="../../../resources/js-test.js"></script> |
-<script> |
-function validate(msg) { |
- shouldBeGreaterThanOrEqual(msg["width"].toString(), "100"); |
- shouldBeGreaterThanOrEqual(msg["height"].toString(), "100"); |
-} |
- |
-function test() { |
- var data = window.showModalDialog("resources/report-size-and-close.html", "", "dialogWidth:10; dialogHeight:10"); |
- validate(data); |
- |
- window.addEventListener('message', function(e) { |
- validate(e.data); |
- e.source.close(); |
- testRunner.notifyDone(); |
- }, false); |
- window.open("resources/report-size-and-close.html", "non-empty-argument", "width=10, height=10"); |
-} |
- |
-if (window.testRunner) { |
- testRunner.dumpAsText(); |
- testRunner.waitUntilDone(); |
- testRunner.setCanOpenWindows(); |
- testRunner.setCloseRemainingWindowsWhenComplete(true); |
-} |
- |
-</script> |
-</head> |
-<body onload="test()"> |
-</body> |
-</html> |