| Index: third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/connect-src-xmlhttprequest-blocked.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/connect-src-xmlhttprequest-blocked.html b/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/connect-src-xmlhttprequest-blocked.html
|
| deleted file mode 100644
|
| index 57c6b084df9ba1dfae5a300b537e1f383ec8be8a..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/connect-src-xmlhttprequest-blocked.html
|
| +++ /dev/null
|
| @@ -1,28 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<html>
|
| -<head>
|
| -<meta http-equiv="Content-Security-Policy" content="connect-src http://127.0.0.1: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 xhr = new XMLHttpRequest;
|
| - xhr.open("GET", "http://localhost:8000/xmlhttprequest/resources/get.txt", true);
|
| - log("Fail");
|
| -} catch(e) {
|
| - log("Pass");
|
| -}
|
| -
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|