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

Unified Diff: third_party/WebKit/Source/web/WebAXObject.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/WebAXObject.cpp
diff --git a/third_party/WebKit/Source/web/WebAXObject.cpp b/third_party/WebKit/Source/web/WebAXObject.cpp
index c80ceb5a79ad0b4bc4ebc982d3747983e6a3d657..7fdc92f3a00b8f42ef233d1381c78fccc292d229 100644
--- a/third_party/WebKit/Source/web/WebAXObject.cpp
+++ b/third_party/WebKit/Source/web/WebAXObject.cpp
@@ -238,7 +238,7 @@ bool WebAXObject::isAriaReadOnly() const
if (isDetached())
return false;
- return equalIgnoringCase(m_private->getAttribute(HTMLNames::aria_readonlyAttr), "true");
+ return equalIgnoringASCIICase(m_private->getAttribute(HTMLNames::aria_readonlyAttr), "true");
tkent 2016/08/11 22:53:38 Are ARIA attribute values ascii-case-insensitive?
esprehn 2016/08/11 23:10:56 Yeah all attributes value matches in the DOM are.
}
WebString WebAXObject::ariaAutoComplete() const
« no previous file with comments | « third_party/WebKit/Source/web/AssociatedURLLoaderTest.cpp ('k') | third_party/WebKit/Source/web/WebDocument.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698