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

Unified Diff: Source/bindings/tests/idls/TestEventTarget.idl

Issue 143943020: Replace [TreatNullAs=functionName] with [StrictTypeChecking] (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update tests, Python, and IDLExtendedAttributes.txt Created 6 years, 11 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
« no previous file with comments | « Source/bindings/templates/interface.cpp ('k') | Source/bindings/tests/results/V8TestEventTarget.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/tests/idls/TestEventTarget.idl
diff --git a/Source/bindings/tests/idls/TestEventTarget.idl b/Source/bindings/tests/idls/TestEventTarget.idl
index fbac9ed93c6495d1da511a12b9144dbb9a19dc57..4d048653ec24c64872c2cd5f24fd0f4cbc28e5f0 100644
--- a/Source/bindings/tests/idls/TestEventTarget.idl
+++ b/Source/bindings/tests/idls/TestEventTarget.idl
@@ -28,10 +28,10 @@
interface TestEventTarget : EventTarget {
getter Node item(unsigned long index);
- setter Node (unsigned long index, Node node);
- getter Node namedItem(DOMString name);
- setter Node (DOMString name, [TreatUndefinedAs=anonymousNamedSetterUndefined] DOMString value);
+ [StrictTypeChecking] setter Node (unsigned long index, Node? node);
[RaisesException] deleter boolean (unsigned long index);
+
+ getter Node namedItem(DOMString name);
+ setter Node (DOMString name, DOMString value);
deleter boolean (DOMString name);
};
-
« no previous file with comments | « Source/bindings/templates/interface.cpp ('k') | Source/bindings/tests/results/V8TestEventTarget.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698