Index: LayoutTests/http/tests/websocket/tests/hybi/handshake-fail-by-null-subprotocol-selection.html |
diff --git a/LayoutTests/http/tests/websocket/tests/hybi/handshake-fail-by-null-subprotocol-selection.html b/LayoutTests/http/tests/websocket/tests/hybi/handshake-fail-by-null-subprotocol-selection.html |
deleted file mode 100644 |
index e548524d1445a491688d66469fc16ea5a985ae36..0000000000000000000000000000000000000000 |
--- a/LayoutTests/http/tests/websocket/tests/hybi/handshake-fail-by-null-subprotocol-selection.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 for verifying that the WebSocket handshake fails when the client requests a subprotocol but the server doesn't include a Sec-WebSocket-Protocol header in the response."); |
- |
-window.jsTestIsAsync = true; |
- |
-var url = "ws://localhost:8880/handshake-fail-by-null-subprotocol-selection"; |
-var ws = new WebSocket(url, 'test'); |
-var closeEvent; |
- |
-ws.onopen = function() |
-{ |
- testFailed("Connection established."); |
- ws.close(); |
-}; |
- |
-ws.onclose = function(event) |
-{ |
- closeEvent = event; |
- shouldBeFalse("closeEvent.wasClean"); |
- finishJSTest(); |
-}; |
- |
-</script> |
-</body> |
-</html> |