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

Unified Diff: third_party/WebKit/Source/web/WebElement.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/WebElement.cpp
diff --git a/third_party/WebKit/Source/web/WebElement.cpp b/third_party/WebKit/Source/web/WebElement.cpp
index 43778b3db194248cde36817a2b5fad00ff586be6..3033177ad99f07db8c3f888b18997f276997f7be 100644
--- a/third_party/WebKit/Source/web/WebElement.cpp
+++ b/third_party/WebKit/Source/web/WebElement.cpp
@@ -72,7 +72,7 @@ bool WebElement::isEditable() const
return true;
}
- return equalIgnoringCase(element->getAttribute(roleAttr), "textbox");
+ return equalIgnoringASCIICase(element->getAttribute(roleAttr), "textbox");
}
WebString WebElement::tagName() const

Powered by Google App Engine
This is Rietveld 408576698