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

Unified Diff: Source/core/html/HTMLFormControlsCollection.idl

Issue 15076011: Support union return type for anonymous named/indexed getter (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Created 7 years, 7 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: Source/core/html/HTMLFormControlsCollection.idl
diff --git a/Source/core/html/HTMLFormControlsCollection.idl b/Source/core/html/HTMLFormControlsCollection.idl
index e590abf2af698cb945b2aba6aabe3a974ed039b4..3f26907e646ed0f1f2f45419d93532bc3c8e7a72 100644
--- a/Source/core/html/HTMLFormControlsCollection.idl
+++ b/Source/core/html/HTMLFormControlsCollection.idl
@@ -19,9 +19,9 @@
*/
[
- CustomNamedGetter,
GenerateIsReachable=ImplOwnerNodeRoot,
DependentLifetime,
] interface HTMLFormControlsCollection : HTMLCollection {
[Custom] Node namedItem([Default=Undefined] optional DOMString name);
+ [ImplementedAs=namedGetter] getter (RadioNodeList or Node)(DOMString name);
};

Powered by Google App Engine
This is Rietveld 408576698