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

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

Issue 2722343002: DOM: Fix a getElementsByTagName regression by r454059. (Closed)
Patch Set: Created 3 years, 10 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/LayoutTests/external/wpt/dom/nodes/case-expected.txt ('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 94c570d8f8f5447ceab5ea6b53585de12af8ea6d..6496b102b30930a019ccbfda923a2f5a6a7e3a9a 100644
--- a/third_party/WebKit/Source/core/html/HTMLTagCollection.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLTagCollection.cpp
@@ -22,14 +22,14 @@
* Boston, MA 02110-1301, USA.
*/
-#include "HTMLTagCollection.h"
+#include "core/html/HTMLTagCollection.h"
namespace blink {
HTMLTagCollection::HTMLTagCollection(ContainerNode& rootNode,
const AtomicString& localName)
: TagCollection(rootNode, HTMLTagCollectionType, starAtom, localName),
- m_loweredLocalName(localName.lower()) {
+ m_loweredLocalName(localName.lowerASCII()) {
DCHECK(rootNode.document().isHTMLDocument());
}
« no previous file with comments | « third_party/WebKit/LayoutTests/external/wpt/dom/nodes/case-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698