Index: LayoutTests/http/tests/security/contentSecurityPolicy/1.1/securitypolicy-allowframefrom.html |
diff --git a/LayoutTests/http/tests/security/contentSecurityPolicy/1.1/securitypolicy-allowframefrom.html b/LayoutTests/http/tests/security/contentSecurityPolicy/1.1/securitypolicy-allowframefrom.html |
deleted file mode 100644 |
index 4286600d21541569d37d58227bc69a73d63b37b9..0000000000000000000000000000000000000000 |
--- a/LayoutTests/http/tests/security/contentSecurityPolicy/1.1/securitypolicy-allowframefrom.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.allowsFrameFrom('http://example.com/')) |
- log('PASS frame is allowed when no policy exists.'); |
- else |
- log('FAIL frame is not allowed when no policy exists.'); |
- |
- injectPolicy("frame-src http://notexample.com;"); |
- |
- if (!document.securityPolicy.allowsFrameFrom('http://example.com/')) |
- log('PASS frame is not allowed when policy exists.'); |
- else |
- log('FAIL frame is allowed when policy exists.'); |
- </script> |
- </body> |
-</html> |
- |