Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(516)

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/DOMException/resources/dispatch-event-exception.js

Issue 1479063003: Drop [LegacyInterfaceTypeChecking] for EventTarget's dispatchEvent() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix test Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/dom/DOMException/resources/dispatch-event-exception.js
diff --git a/third_party/WebKit/LayoutTests/fast/dom/DOMException/resources/dispatch-event-exception.js b/third_party/WebKit/LayoutTests/fast/dom/DOMException/resources/dispatch-event-exception.js
index f92cfe5dbfe8304ef83742ffc51de120519a73f7..9e6f10e02705ba01370c82b9db6746f51b6e4e08 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/DOMException/resources/dispatch-event-exception.js
+++ b/third_party/WebKit/LayoutTests/fast/dom/DOMException/resources/dispatch-event-exception.js
@@ -1,16 +1,4 @@
-description("Tests the properties of the exception thrown by dispatchEvent.")
-
-var e;
-try {
- document.dispatchEvent(null);
- // raises a InvalidStateError
-} catch (err) {
- e = err;
-}
-
-shouldBeEqualToString("e.toString()", "InvalidStateError: Failed to execute 'dispatchEvent' on 'EventTarget': The event provided is null.");
-shouldBeEqualToString("Object.prototype.toString.call(e)", "[object DOMException]");
-shouldBeEqualToString("Object.prototype.toString.call(e.__proto__)", "[object DOMExceptionPrototype]");
-shouldBeEqualToString("e.constructor.toString()", "function DOMException() { [native code] }");
-shouldBe("e.constructor", "window.DOMException");
+description("Tests that dispatchEvent's argument is required to be an Event.")
+shouldThrow("document.dispatchEvent(null)");
+shouldThrow("document.dispatchEvent(document)");

Powered by Google App Engine
This is Rietveld 408576698