Index: third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/connect-src-beacon-blocked.html |
diff --git a/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/connect-src-beacon-blocked.html b/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/connect-src-beacon-blocked.html |
deleted file mode 100644 |
index 06f218b3c6dc696d25de2b75f47696cc6e58a320..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/connect-src-beacon-blocked.html |
+++ /dev/null |
@@ -1,26 +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 = navigator.sendBeacon("http://127.0.0.1:8000/security/contentSecurityPolicy/echo-report.php"); |
- log("Fail"); |
-} catch(e) { |
- log("Pass"); |
-} |
-</script> |
-</body> |
-</html> |