Index: third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/1.1/securitypolicyviolation-block-image-from-script.html |
diff --git a/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/1.1/securitypolicyviolation-block-image-from-script.html b/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/1.1/securitypolicyviolation-block-image-from-script.html |
deleted file mode 100644 |
index fdefd285307810900d6ddface17430f4534eecd2..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/1.1/securitypolicyviolation-block-image-from-script.html |
+++ /dev/null |
@@ -1,32 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
- <meta http-equiv="Content-Security-Policy" content="img-src 'none'"> |
- <script src="/js-test-resources/js-test.js"></script> |
- <script src="../resources/securitypolicyviolation-test.js"></script> |
- <script> |
- description('Check that a SecurityPolicyViolationEvent is fired upon blocking an image injected via script.'); |
- |
- var expectations = { |
- 'documentURI': document.location.toString(), |
- 'referrer': document.referrer, |
- 'blockedURI': 'http://127.0.0.1:8000/security/resources/abe.png', |
- 'violatedDirective': 'img-src \'none\'', |
- 'effectiveDirective': 'img-src', |
- 'originalPolicy': 'img-src \'none\'', |
- 'sourceFile': '', |
- 'lineNumber': 0, |
- 'columnNumber': 0, |
- 'statusCode': 200, |
- }; |
- |
- function run() { |
- var script = document.createElement('script'); |
- script.src = '../resources/inject-image.js'; |
- document.body.appendChild(script); |
- } |
- </script> |
-</head> |
-<body> |
-</body> |
-</html> |