Index: LayoutTests/http/tests/websocket/tests/hybi/handshake-fail-by-no-accept-header.html |
diff --git a/LayoutTests/http/tests/websocket/tests/hybi/handshake-fail-by-no-accept-header.html b/LayoutTests/http/tests/websocket/tests/hybi/handshake-fail-by-no-accept-header.html |
deleted file mode 100644 |
index 7875e398985504abb76673442976dfc289f0702f..0000000000000000000000000000000000000000 |
--- a/LayoutTests/http/tests/websocket/tests/hybi/handshake-fail-by-no-accept-header.html |
+++ /dev/null |
@@ -1,33 +0,0 @@ |
-<!DOCTYPE HTML> |
-<html> |
-<head> |
-<script src="/js-test-resources/js-test.js"></script> |
-</head> |
-<body> |
-<div id="description"></div> |
-<div id="console"></div> |
-<script> |
-description("Test whether WebSocket handshake fails if the server does not send Sec-WebSocket-Accept header."); |
- |
-window.jsTestIsAsync = true; |
- |
-var url = "ws://localhost:8880/handshake-fail-by-no-accept-header"; |
-var ws = new WebSocket(url); |
-var closeEvent; |
- |
-ws.onopen = function() |
-{ |
- testFailed("Connection established."); |
- ws.close(); |
-}; |
- |
-ws.onclose = function(event) |
-{ |
- closeEvent = event; |
- shouldBeFalse("closeEvent.wasClean"); |
- finishJSTest(); |
-}; |
- |
-</script> |
-</body> |
-</html> |