Chromium Code Reviews| Index: Source/core/html/HTMLAllCollection.idl |
| diff --git a/Source/core/html/HTMLAllCollection.idl b/Source/core/html/HTMLAllCollection.idl |
| index e43def699d147e4501d615495faf40b43228409f..9b48f2d7327d73ac09c98b305404bc86ca44a876 100644 |
| --- a/Source/core/html/HTMLAllCollection.idl |
| +++ b/Source/core/html/HTMLAllCollection.idl |
| @@ -30,7 +30,8 @@ |
| DependentLifetime |
| ] interface HTMLAllCollection { |
| readonly attribute unsigned long length; |
| - [Custom] getter Node item([Default=Undefined] optional unsigned long index); |
| + [ImplementedAs=item] getter Node (unsigned long index); |
|
haraken
2013/05/28 04:44:17
Just to confirm: This doesn't change any generated
kojih
2013/05/28 04:52:02
No changes w.r.t. HTMLAllCollection.idl.
(changes
|
| + [Custom] Node item([Default=Undefined] optional unsigned long index); |
| [ImplementedAs=anonymousNamedGetter] getter (NodeList or Node)(DOMString name); |
| [Custom] Node namedItem(DOMString name); |
| // FIXME: This should return an HTMLAllCollection. |