| Index: third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/connect-src-websocket-blocked.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/connect-src-websocket-blocked.html b/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/connect-src-websocket-blocked.html
|
| deleted file mode 100644
|
| index c030b3239e12effd03413283da4b0f9de503a657..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/connect-src-websocket-blocked.html
|
| +++ /dev/null
|
| @@ -1,27 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<html>
|
| -<head>
|
| -<meta http-equiv="Content-Security-Policy" content="connect-src ws://127.0.0.1:8880">
|
| -<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 ws = new WebSocket("ws://localhost:8880/echo");
|
| - log("Fail");
|
| -} catch(e) {
|
| - log("Pass");
|
| -}
|
| -
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|