Index: core/html/HTMLOptionsCollection.idl |
=================================================================== |
--- core/html/HTMLOptionsCollection.idl (revision 23517) |
+++ core/html/HTMLOptionsCollection.idl (working copy) |
@@ -19,14 +19,14 @@ |
*/ |
[ |
- CustomIndexedSetter, |
GenerateIsReachable=ownerNode, |
DependentLifetime |
] interface HTMLOptionsCollection : HTMLCollection { |
attribute long selectedIndex; |
[CustomSetter, SetterRaisesException] attribute unsigned long length; |
[ImplementedAs=item] getter Node(unsigned long index); |
- [ImplementedAs=anonymousNamedGetter] getter (NodeList or Node)(DOMString name); |
+ [ImplementedAs=anonymousIndexedSetter, RaisesException] setter HTMLOptionElement (unsigned long index, [TreatNullAs=anonymousIndexedSetterRemove, TreatUndefinedAs=anonymousIndexedSetterRemove] HTMLOptionElement value); |
+ [ImplementedAs=anonymousNamedGetter, NotEnumerable] getter (NodeList or Node)(DOMString name); |
[Custom] Node namedItem([Default=Undefined] optional DOMString name); |