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

Unified Diff: third_party/WebKit/Source/core/html/HTMLTagCollection.cpp

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
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLTagCollection.h ('k') | 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/HTMLTagCollection.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLTagCollection.cpp b/third_party/WebKit/Source/core/html/HTMLTagCollection.cpp
index c0011d0669bec172734c95f9a15cad0301fbf946..5c814539f5006dec219853de663002d28d7cfec2 100644
--- a/third_party/WebKit/Source/core/html/HTMLTagCollection.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLTagCollection.cpp
@@ -27,9 +27,9 @@
namespace blink {
HTMLTagCollection::HTMLTagCollection(ContainerNode& root_node,
- const AtomicString& local_name)
- : TagCollection(root_node, kHTMLTagCollectionType, g_star_atom, local_name),
- lowered_local_name_(local_name.LowerASCII()) {
+ const AtomicString& qualified_name)
+ : TagCollection(root_node, kHTMLTagCollectionType, qualified_name),
+ lowered_qualified_name_(qualified_name.LowerASCII()) {
DCHECK(root_node.GetDocument().IsHTMLDocument());
}
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLTagCollection.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698