| Index: chrome/common/extensions/csp_validator_unittest.cc
|
| diff --git a/chrome/common/extensions/csp_validator_unittest.cc b/chrome/common/extensions/csp_validator_unittest.cc
|
| index 33c3deb164e650095f0608b9457318793b514fa1..9bd55bdff5b88558dfd538647c240a68786d1096 100644
|
| --- a/chrome/common/extensions/csp_validator_unittest.cc
|
| +++ b/chrome/common/extensions/csp_validator_unittest.cc
|
| @@ -76,6 +76,11 @@ TEST(ExtensionCSPValidator, IsSecure) {
|
| "default-src 'self' google.com"));
|
| EXPECT_TRUE(ContentSecurityPolicyIsSecure(
|
| "default-src 'self' https://*.google.com"));
|
| +
|
| + EXPECT_TRUE(ContentSecurityPolicyIsSecure(
|
| + "default-src 'self' http://127.0.0.1"));
|
| + EXPECT_TRUE(ContentSecurityPolicyIsSecure(
|
| + "default-src 'self' http://localhost"));
|
| }
|
|
|
| TEST(ExtensionCSPValidator, IsSandboxed) {
|
|
|