Index: LayoutTests/fast/events/popup-blocked-from-untrusted-click-event-on-anchor.html |
diff --git a/LayoutTests/fast/events/popup-blocked-from-untrusted-click-event-on-anchor.html b/LayoutTests/fast/events/popup-blocked-from-untrusted-click-event-on-anchor.html |
deleted file mode 100644 |
index 95c46d162fe978098ccdbd0da6a4539f1025b67e..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/events/popup-blocked-from-untrusted-click-event-on-anchor.html |
+++ /dev/null |
@@ -1,31 +0,0 @@ |
-<html> |
- <head> |
- <script src="../../resources/js-test.js"></script> |
- </head> |
- <body> |
- <a id=test href="javascript:popup()">test</a> |
- <div id="console"></div> |
- <script> |
- var win; |
- function popup() { |
- win = window.open('about:blank','blank','height=200,width=200'); |
- shouldBeUndefined("win"); |
- } |
- |
- if (window.testRunner) { |
- testRunner.dumpAsText(); |
- testRunner.setCanOpenWindows(); |
- testRunner.setPopupBlockingEnabled(true); |
- testRunner.setCloseRemainingWindowsWhenComplete(true); |
- testRunner.waitUntilDone(); |
- } |
- |
- clickEvent = document.createEvent("MouseEvents"); |
- clickEvent.initEvent("click", true, true, document.defaultView, 0, 0, 0, 0, 0, false, false, false, false, 0, null); |
- document.getElementById("test").dispatchEvent(clickEvent); |
- |
- if (window.testRunner) |
- testRunner.notifyDone(); |
- </script> |
- </body> |
-</html> |