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

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

Issue 143453010: Have getElementsByClassName() / getElementsByTagName*() return an HTMLCollection (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Null HTMLCollection handling Created 6 years, 11 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 861296ce50e37263fe876e561594a4a3e6d7003e..586117e32161ea6286e7889d6bda7ca2a4ec2cd7 100644
--- a/Source/core/html/HTMLAllCollection.idl
+++ b/Source/core/html/HTMLAllCollection.idl
@@ -33,6 +33,5 @@
[Custom] Node item([Default=Undefined] optional unsigned long index);
[NotEnumerable] getter (NodeList or Node) (DOMString name);
[Custom] Node namedItem(DOMString name);
- // FIXME: This should return an HTMLAllCollection.
arv (Not doing code reviews) 2014/01/29 04:45:48 This FIXME seems to still apply. http://www.whatw
Inactive 2014/01/29 14:08:14 My bad, I misread the comment. I will reintroduce
Inactive 2014/01/29 16:21:34 Done.
- [MeasureAs=DocumentAllTags] NodeList tags(DOMString name);
+ [MeasureAs=DocumentAllTags] HTMLCollection tags(DOMString name);
};

Powered by Google App Engine
This is Rietveld 408576698