| Index: third_party/WebKit/Source/platform/weborigin/SchemeRegistry.cpp
|
| diff --git a/third_party/WebKit/Source/platform/weborigin/SchemeRegistry.cpp b/third_party/WebKit/Source/platform/weborigin/SchemeRegistry.cpp
|
| index e99659a272679a5d02b6302897c9af272636facc..70bbe3e36518fd6c350a63d9b09cf30e29b704ea 100644
|
| --- a/third_party/WebKit/Source/platform/weborigin/SchemeRegistry.cpp
|
| +++ b/third_party/WebKit/Source/platform/weborigin/SchemeRegistry.cpp
|
| @@ -302,7 +302,7 @@ bool SchemeRegistry::isDomainRelaxationForbiddenForURLScheme(const String& schem
|
|
|
| bool SchemeRegistry::canDisplayOnlyIfCanRequest(const String& scheme)
|
| {
|
| - return equalIgnoringCase("blob", scheme) || equalIgnoringCase("filesystem", scheme);
|
| + return equalIgnoringASCIICase("blob", scheme) || equalIgnoringASCIICase("filesystem", scheme);
|
| }
|
|
|
| void SchemeRegistry::registerURLSchemeAsNotAllowingJavascriptURLs(const String& scheme)
|
| @@ -355,7 +355,7 @@ String SchemeRegistry::listOfCORSEnabledURLSchemes()
|
|
|
| bool SchemeRegistry::shouldTreatURLSchemeAsLegacy(const String& scheme)
|
| {
|
| - return equalIgnoringCase("ftp", scheme) || equalIgnoringCase("gopher", scheme);
|
| + return equalIgnoringASCIICase("ftp", scheme) || equalIgnoringASCIICase("gopher", scheme);
|
| }
|
|
|
| void SchemeRegistry::registerURLSchemeAsAllowingServiceWorkers(const String& scheme)
|
|
|