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

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

Issue 15943008: [binding] Replace [CustomIndexedGetter] attributes with [Custom] getter (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: update tests 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
« no previous file with comments | « Source/core/html/HTMLObjectElement.idl ('k') | Source/core/html/HTMLSelectElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLOptionsCollection.idl
diff --git a/Source/core/html/HTMLOptionsCollection.idl b/Source/core/html/HTMLOptionsCollection.idl
index 84ae0f4711865a3bd6fcec4e61e72742387bde0f..6747e90b612b35735ac5c4d6daaa64a849f84c01 100644
--- a/Source/core/html/HTMLOptionsCollection.idl
+++ b/Source/core/html/HTMLOptionsCollection.idl
@@ -19,13 +19,13 @@
*/
[
- CustomIndexedSetter,
GenerateIsReachable=ownerNode,
DependentLifetime
] interface HTMLOptionsCollection : HTMLCollection {
attribute long selectedIndex;
[CustomSetter, SetterRaisesException] attribute unsigned long length;
[ImplementedAs=item] getter Node(unsigned long index);
+ [Custom] setter boolean (unsigned long index, Node value);
[ImplementedAs=anonymousNamedGetter] getter (NodeList or Node)(DOMString name);
[Custom] Node namedItem([Default=Undefined] optional DOMString name);
« no previous file with comments | « Source/core/html/HTMLObjectElement.idl ('k') | Source/core/html/HTMLSelectElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698