| Index: third_party/WebKit/Source/core/frame/csp/CSPSource.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/csp/CSPSource.cpp b/third_party/WebKit/Source/core/frame/csp/CSPSource.cpp
|
| index fa2f927be9a552a7ea4ebbaa1b45d2dd6d83b15b..f8e597bc6ecb54b399ba6a67b8065eef391da0e4 100644
|
| --- a/third_party/WebKit/Source/core/frame/csp/CSPSource.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/csp/CSPSource.cpp
|
| @@ -76,7 +76,7 @@ bool CSPSource::pathMatches(const KURL& url) const
|
| String path = decodeURLEscapeSequences(url.path());
|
|
|
| if (m_path.endsWith("/"))
|
| - return path.startsWith(m_path, TextCaseInsensitive);
|
| + return path.startsWith(m_path);
|
|
|
| return path == m_path;
|
| }
|
|
|