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

Unified Diff: third_party/WebKit/Source/core/dom/ContainerNode.h

Issue 2868823002: getElementsByTagName() should take a qualifiedName in parameter (Closed)
Patch Set: Rebased And Align with review comments Created 3 years, 7 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: third_party/WebKit/Source/core/dom/ContainerNode.h
diff --git a/third_party/WebKit/Source/core/dom/ContainerNode.h b/third_party/WebKit/Source/core/dom/ContainerNode.h
index f398e46996df42ada17dede4c6c8f0fd4b5b9cf6..7d2871238eb3bdf72d500913569707c93822acd8 100644
--- a/third_party/WebKit/Source/core/dom/ContainerNode.h
+++ b/third_party/WebKit/Source/core/dom/ContainerNode.h
@@ -42,7 +42,6 @@ class HTMLCollection;
class NameNodeList;
using StaticElementList = StaticNodeTypeList<Element>;
class RadioNodeList;
-class TagCollection;
enum DynamicRestyleFlags {
kChildrenOrSiblingsAffectedByFocus = 1 << 0,
@@ -120,9 +119,9 @@ class CORE_EXPORT ContainerNode : public Node {
Node* AppendChild(Node* new_child, ExceptionState& = ASSERT_NO_EXCEPTION);
Element* getElementById(const AtomicString& id) const;
- TagCollection* getElementsByTagName(const AtomicString&);
- TagCollection* getElementsByTagNameNS(const AtomicString& namespace_uri,
- const AtomicString& local_name);
+ HTMLCollection* getElementsByTagName(const AtomicString&);
+ HTMLCollection* getElementsByTagNameNS(const AtomicString& namespace_uri,
+ const AtomicString& local_name);
NameNodeList* getElementsByName(const AtomicString& element_name);
ClassCollection* getElementsByClassName(const AtomicString& class_names);
RadioNodeList* GetRadioNodeList(const AtomicString&,

Powered by Google App Engine
This is Rietveld 408576698