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

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

Issue 1379633005: Remove some obsolete FIXMEs for HTMLAllCollection (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/html/HTMLAllCollection.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLAllCollection.idl b/third_party/WebKit/Source/core/html/HTMLAllCollection.idl
index 40c7fc47efdcbcc9ceb146139ab53eaac2af7ef9..dc4ba0d437a4af390e9db4183711c285333953df 100644
--- a/third_party/WebKit/Source/core/html/HTMLAllCollection.idl
+++ b/third_party/WebKit/Source/core/html/HTMLAllCollection.idl
@@ -26,20 +26,17 @@
// https://html.spec.whatwg.org/#the-htmlallcollection-interface
-// FIXME: This interface should inherit HTMLCollection.
[
Custom=LegacyCallAsFunction,
DependentLifetime,
SetWrapperReferenceFrom=ownerNode,
WillBeGarbageCollected,
] interface HTMLAllCollection {
- // FIXME: length and 'getter' should be inherited from HTMLCollection.
readonly attribute unsigned long length;
[ImplementedAs=item] getter Element (unsigned long index);
// FIXME: The custom item() implementation may return a NodeList, but the
// spec has a (HTMLCollection or Element)? item(DOMString name) method.
[Custom] Element? item([Default=Undefined] optional unsigned long index);
- // FIXME:
// FIXME: namedItem() should be a legacycaller. crbug.com/465009
// FIXME: namedItem() should return an (HTMLCollection or Element)? union.
[ImplementedAs=namedGetter] getter (NodeList or Element)? namedItem(DOMString name);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698