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

Unified Diff: third_party/WebKit/Source/web/WebViewImpl.cpp

Issue 2236573003: Update equalIgnoreCase to equalIgnoreASCIICase in Source/web (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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/web/WebViewImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebViewImpl.cpp b/third_party/WebKit/Source/web/WebViewImpl.cpp
index 271807746f22e34e871e1ab137be4e0e14724c52..a767e0c729ce9302f91b297dfb10da2ad802f0a0 100644
--- a/third_party/WebKit/Source/web/WebViewImpl.cpp
+++ b/third_party/WebKit/Source/web/WebViewImpl.cpp
@@ -3020,7 +3020,7 @@ static bool isElementEditable(const Element* element)
return true;
}
- return equalIgnoringCase(element->getAttribute(HTMLNames::roleAttr), "textbox");
+ return equalIgnoringASCIICase(element->getAttribute(HTMLNames::roleAttr), "textbox");
}
bool WebViewImpl::scrollFocusedEditableElementIntoRect(const WebRect& rectInViewport)

Powered by Google App Engine
This is Rietveld 408576698