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

Unified Diff: third_party/WebKit/Source/web/WebDocument.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/WebDocument.cpp
diff --git a/third_party/WebKit/Source/web/WebDocument.cpp b/third_party/WebKit/Source/web/WebDocument.cpp
index da41a82e08a61eacfd5747af4657fa7f3a8c914e..7184c1cc8ce7d2ec8e109ef6686a643ccc26720b 100644
--- a/third_party/WebKit/Source/web/WebDocument.cpp
+++ b/third_party/WebKit/Source/web/WebDocument.cpp
@@ -307,7 +307,7 @@ bool WebDocument::manifestUseCredentials() const
HTMLLinkElement* linkElement = document->linkManifest();
if (!linkElement)
return false;
- return equalIgnoringCase(linkElement->fastGetAttribute(HTMLNames::crossoriginAttr), "use-credentials");
+ return equalIgnoringASCIICase(linkElement->fastGetAttribute(HTMLNames::crossoriginAttr), "use-credentials");
}
WebDistillabilityFeatures WebDocument::distillabilityFeatures()

Powered by Google App Engine
This is Rietveld 408576698