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

Unified Diff: third_party/WebKit/Source/wtf/text/WTFString.cpp

Issue 2723053002: Use the correct case converter for |localName| and |tagName| (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
Index: third_party/WebKit/Source/wtf/text/WTFString.cpp
diff --git a/third_party/WebKit/Source/wtf/text/WTFString.cpp b/third_party/WebKit/Source/wtf/text/WTFString.cpp
index b547cbdf993b0a448a1d25a79df6adb28d5a21fa..fc882e19c862c673783b112b8487fbda932d7681 100644
--- a/third_party/WebKit/Source/wtf/text/WTFString.cpp
+++ b/third_party/WebKit/Source/wtf/text/WTFString.cpp
@@ -282,6 +282,12 @@ String String::upper() const {
return m_impl->upper();
}
+String String::upperASCII() const {
+ if (!m_impl)
+ return String();
+ return m_impl->upperASCII();
+}
+
String String::lower(const AtomicString& localeIdentifier) const {
if (!m_impl)
return String();

Powered by Google App Engine
This is Rietveld 408576698