Index: third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/connect-src-xmlhttprequest-redirect-to-blocked.html |
diff --git a/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/connect-src-xmlhttprequest-redirect-to-blocked.html b/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/connect-src-xmlhttprequest-redirect-to-blocked.html |
deleted file mode 100644 |
index 2fa9f97ff09b3b32cf2cc46cdcd7089f778002ae..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/connect-src-xmlhttprequest-redirect-to-blocked.html |
+++ /dev/null |
@@ -1,37 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
- <meta http-equiv="Content-Security-Policy" content="connect-src http://127.0.0.1:8000/security/contentSecurityPolicy/resources/redir.php"> |
- <script src="/js-test-resources/js-test.js"></script> |
-</head> |
-<body> |
- <script> |
- window.jsTestIsAsync = true; |
- function log(msg) { |
- document.getElementById("console").appendChild(document.createTextNode(msg + "\n")); |
- } |
- |
- var xhr = new XMLHttpRequest; |
- try { |
- // Redirect to a different host, because as of CSP2 paths |
- // are ignored when matching after a redirect. |
- xhr.open("GET", "resources/redir.php?url=http://localhost:8000/security/contentSecurityPolicy/resources/xhr-redirect-not-allowed.pl", true); |
- } catch(e) { |
- testFailed("XMLHttpRequest.open() should not throw an exception."); |
- } |
- |
- xhr.onload = function () { |
- testFailed("XMLHttpRequest.send() should fail to follow the disallowed redirect."); |
- finishJSTest(); |
- }; |
- |
- xhr.onerror = function () { |
- testPassed("XMLHttpRequest.send() did not follow the disallowed redirect."); |
- finishJSTest(); |
- }; |
- |
- xhr.send(); |
- </script> |
-</script> |
-</body> |
-</html> |