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

Unified Diff: third_party/WebKit/Source/web/AssociatedURLLoaderTest.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/AssociatedURLLoaderTest.cpp
diff --git a/third_party/WebKit/Source/web/AssociatedURLLoaderTest.cpp b/third_party/WebKit/Source/web/AssociatedURLLoaderTest.cpp
index 9e3c8cbca2cd8d429f1ad6a1812d3455a7ee54ec..7263b7fc01e5d1a9bbfa58c7f56700afbc5ec2b6 100644
--- a/third_party/WebKit/Source/web/AssociatedURLLoaderTest.cpp
+++ b/third_party/WebKit/Source/web/AssociatedURLLoaderTest.cpp
@@ -200,7 +200,7 @@ public:
{
WebURLRequest request;
request.setURL(toKURL("http://www.test.com/success.html"));
- if (equalIgnoringCase(WebString::fromUTF8(headerField), "referer"))
+ if (equalIgnoringASCIICase(WebString::fromUTF8(headerField), "referer"))
request.setHTTPReferrer(WebString::fromUTF8(headerValue), WebReferrerPolicyDefault);
else
request.setHTTPHeaderField(WebString::fromUTF8(headerField), WebString::fromUTF8(headerValue));
« no previous file with comments | « no previous file | third_party/WebKit/Source/web/WebAXObject.cpp » ('j') | third_party/WebKit/Source/web/WebAXObject.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698