Index: third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/connect-src-eventsource-blocked.html |
diff --git a/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/connect-src-eventsource-blocked.html b/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/connect-src-eventsource-blocked.html |
deleted file mode 100644 |
index 6a37bc10bee4c8177205381bf6ebaaef37a1501d..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/connect-src-eventsource-blocked.html |
+++ /dev/null |
@@ -1,27 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<meta http-equiv="Content-Security-Policy" content="connect-src http://localhost:8000"> |
-<script> |
-if (window.testRunner) |
- testRunner.dumpAsText(); |
-</script> |
-</head> |
-<body> |
-<pre id="console"></pre> |
-<script> |
-function log(msg) |
-{ |
- document.getElementById("console").appendChild(document.createTextNode(msg + "\n")); |
-} |
- |
-try { |
- var es = new EventSource("http://127.0.0.1:8000/eventsource/resources/simple-event-stream.asis"); |
- log("Fail"); |
-} catch(e) { |
- log("Pass"); |
-} |
- |
-</script> |
-</body> |
-</html> |