| 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 be2b12a73abe0d0073b16f27784e144367be8372..7960d638563c0ca731b43cc00600b2fb1b5068f7 100644
|
| --- a/third_party/WebKit/Source/platform/weborigin/SchemeRegistry.cpp
|
| +++ b/third_party/WebKit/Source/platform/weborigin/SchemeRegistry.cpp
|
| @@ -300,7 +300,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)
|
| @@ -353,7 +353,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)
|
|
|