Index: LayoutTests/http/tests/security/contentSecurityPolicy/1.1/securitypolicy-allowobjectfrom.html |
diff --git a/LayoutTests/http/tests/security/contentSecurityPolicy/1.1/securitypolicy-allowobjectfrom.html b/LayoutTests/http/tests/security/contentSecurityPolicy/1.1/securitypolicy-allowobjectfrom.html |
deleted file mode 100644 |
index bc0f7313ae1f2ef62ad5afac698c7eb38fc3b3ea..0000000000000000000000000000000000000000 |
--- a/LayoutTests/http/tests/security/contentSecurityPolicy/1.1/securitypolicy-allowobjectfrom.html |
+++ /dev/null |
@@ -1,20 +0,0 @@ |
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
-<html> |
- <body> |
- <script src="../resources/securitypolicy-tests-base.js"></script> |
- <script> |
- if (document.securityPolicy.allowsObjectFrom('http://example.com/')) |
- log('PASS object is allowed when no policy exists.'); |
- else |
- log('FAIL object is not allowed when no policy exists.'); |
- |
- injectPolicy("object-src http://notexample.com;"); |
- |
- if (!document.securityPolicy.allowsObjectFrom('http://example.com/')) |
- log('PASS object is not allowed when policy exists.'); |
- else |
- log('FAIL object is allowed when policy exists.'); |
- </script> |
- </body> |
-</html> |
- |