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

Unified Diff: Source/core/testing/UnionTypesTest.idl

Issue 692993003: Named getter of HTMLAllCollection etc should be nullable (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@union-nullable
Patch Set: Created 6 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
« no previous file with comments | « Source/core/testing/UnionTypesTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/testing/UnionTypesTest.idl
diff --git a/Source/core/testing/UnionTypesTest.idl b/Source/core/testing/UnionTypesTest.idl
index f3375202d1deacda8504db60588e0dc4c965f608..ddb08479d41404ff647b3fc19aed79a02e3ac83e 100644
--- a/Source/core/testing/UnionTypesTest.idl
+++ b/Source/core/testing/UnionTypesTest.idl
@@ -12,6 +12,10 @@
[ImplementedAs=doubleOrStringArg] DOMString doubleOrStringDefaultDoubleArg(optional (double or DOMString) arg = 3.14);
[ImplementedAs=doubleOrStringArg] DOMString doubleOrStringDefaultStringArg(optional (double or DOMString) arg = "foo");
[ImplementedAs=doubleOrStringArg] DOMString doubleOrStringDefaultNullArg(optional (double or DOMString)? arg = null);
+
DOMString doubleOrStringArrayArg((double or DOMString)[] arg);
DOMString doubleOrStringSequenceArg(sequence<(double or DOMString)> arg);
+
+ DOMString nodeListOrElementArg((NodeList or Element) arg);
+ DOMString nodeListOrElementOrNullArg((NodeList or Element)? arg);
};
« no previous file with comments | « Source/core/testing/UnionTypesTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698