Index: Source/core/html/HTMLCollection.idl |
diff --git a/Source/core/html/HTMLCollection.idl b/Source/core/html/HTMLCollection.idl |
index 4d33c095a99d9c1d9a6a2022ac9d6ed3cb26a2da..542f995ec03607a9dd17eda78712c054dd54e06a 100644 |
--- a/Source/core/html/HTMLCollection.idl |
+++ b/Source/core/html/HTMLCollection.idl |
@@ -19,7 +19,6 @@ |
*/ |
[ |
- IndexedGetter, |
CustomToJSObject, |
GenerateIsReachable=ImplOwnerNodeRoot, |
DependentLifetime, |
@@ -27,7 +26,7 @@ |
SkipVTableValidation |
] interface HTMLCollection { |
readonly attribute unsigned long length; |
- Node item([Default=Undefined] optional unsigned long index); |
+ getter Node item([Default=Undefined] optional unsigned long index); |
getter Node namedItem([Default=Undefined] optional DOMString name); |
}; |