| 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 d54d4ddfbcbf6bcc36dfd6db0c55c255f56c032f..eb38d8933829fba94e2d62753e131e8ee8d820ec 100644
|
| --- a/third_party/WebKit/Source/core/frame/csp/CSPSource.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/csp/CSPSource.cpp
|
| @@ -57,7 +57,7 @@ bool CSPSource::hostMatches(const String& host) const {
|
|
|
| bool equalHosts = m_host == host;
|
| if (m_hostWildcard == HasWildcard) {
|
| - match = host.endsWith(String("." + m_host), TextCaseInsensitive);
|
| + match = host.endsWith(String("." + m_host), TextCaseUnicodeInsensitive);
|
|
|
| // Chrome used to, incorrectly, match *.x.y to x.y. This was fixed, but
|
| // the following count measures when a match fails that would have
|
|
|