Index: LayoutTests/fast/dom/Window/window-property-shadowing-onclick.html |
diff --git a/LayoutTests/fast/dom/Window/window-property-shadowing-onclick.html b/LayoutTests/fast/dom/Window/window-property-shadowing-onclick.html |
deleted file mode 100644 |
index 48a177aa9b9e13a20f8cd824d25be8ab011b1439..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/dom/Window/window-property-shadowing-onclick.html |
+++ /dev/null |
@@ -1,24 +0,0 @@ |
-<!DOCTYPE html> |
-<script src="../../../resources/js-test.js"></script> |
-<script> |
- |
-description('This tests the ES5.2 behavior where global variables should not trigger setters on the Window object'); |
- |
-if (window.testRunner) |
- testRunner.dumpAsText(); |
- |
-var onClickCalled = false; |
- |
-var onclick = function(e) { |
- onClickCalled = true; |
-}; |
- |
-var e = document.createEvent('MouseEvents'); |
-e.initMouseEvent('click', true, true, window, |
- 0, 0, 0, 0, 0, false, false, false, false, 0, null); |
-document.dispatchEvent(e); |
- |
-shouldBeFalse('onClickCalled'); |
- |
-</script> |
-<script src="../../../resources/js-test.js"></script> |