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

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

Issue 14751005: Support for latest WebIDL for indexed property getters. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: do not generate enumerator in case of WebKitCSSKeyframesRule Created 7 years, 8 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/HTMLAllCollection.idl
diff --git a/Source/core/html/HTMLAllCollection.idl b/Source/core/html/HTMLAllCollection.idl
index 3fcf555b85d8df75bbf476bd11cb51112235824f..f421cafb9888a2420f86dbeec15fc92f673fc152 100644
--- a/Source/core/html/HTMLAllCollection.idl
+++ b/Source/core/html/HTMLAllCollection.idl
@@ -24,7 +24,6 @@
*/
[
- IndexedGetter,
CustomNamedGetter,
CustomCall,
MasqueradesAsUndefined,
@@ -32,7 +31,7 @@
DependentLifetime,
] interface HTMLAllCollection {
readonly attribute unsigned long length;
- [Custom] Node item([Default=Undefined] optional unsigned long index);
+ [Custom] getter Node item([Default=Undefined] optional unsigned long index);
[Custom] Node namedItem(DOMString name);
// FIXME: This should return an HTMLAllCollection.
NodeList tags(DOMString name);

Powered by Google App Engine
This is Rietveld 408576698