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

Unified Diff: LayoutTests/fast/events/event-listener-arguments-expected.txt

Issue 201603002: Simplify EventTarget bindings generation (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Much more extensive Created 6 years, 9 months 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: LayoutTests/fast/events/event-listener-arguments-expected.txt
diff --git a/LayoutTests/fast/events/event-listener-arguments-expected.txt b/LayoutTests/fast/events/event-listener-arguments-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..780b2057f95dc88e37cbabd18fdc35299b662e4a
--- /dev/null
+++ b/LayoutTests/fast/events/event-listener-arguments-expected.txt
@@ -0,0 +1,28 @@
+EventTarget.addEventListener and EventTarget.removeEventLister should throw on invalid arguments.
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+Signature:
+void addEventListener(DOMString type, EventListener listener, optional boolean useCapture)
+PASS document.addEventListener() threw exception TypeError: Failed to execute 'addEventListener' on 'EventTarget': 2 arguments required, but only 0 present..
+PASS document.addEventListener("foo") threw exception TypeError: Failed to execute 'addEventListener' on 'EventTarget': 2 arguments required, but only 1 present..
+PASS document.addEventListener("foo", listener) did not throw exception.
+PASS document.addEventListener("", listener) did not throw exception.
+PASS document.addEventListener("", function(){}) did not throw exception.
+PASS document.addEventListener("bar", listener, false) did not throw exception.
+PASS document.addEventListener("bar", listener, true) did not throw exception.
+
+Signature:
+void removeEventListener(DOMString type, EventListener listener, optional boolean useCapture)
+PASS document.removeEventListener() threw exception TypeError: Failed to execute 'removeEventListener' on 'EventTarget': 2 arguments required, but only 0 present..
+PASS document.removeEventListener("foo") threw exception TypeError: Failed to execute 'removeEventListener' on 'EventTarget': 2 arguments required, but only 1 present..
+PASS document.removeEventListener("foo", listener) did not throw exception.
+PASS document.removeEventListener("foo", listener, true) did not throw exception.
+PASS document.removeEventListener("bar", listener, false) did not throw exception.
+PASS document.removeEventListener("bar", listener, false) did not throw exception.
+PASS document.addEventListener("bar", listener, true) did not throw exception.
+PASS successfullyParsed is true
+
+TEST COMPLETE
+

Powered by Google App Engine
This is Rietveld 408576698