Index: LayoutTests/http/tests/websocket/tests/hybi/sub-protocol.html |
diff --git a/LayoutTests/http/tests/websocket/tests/hybi/sub-protocol.html b/LayoutTests/http/tests/websocket/tests/hybi/sub-protocol.html |
deleted file mode 100644 |
index f9ba80400ea6094c4f9d507c565ce498faaea1f8..0000000000000000000000000000000000000000 |
--- a/LayoutTests/http/tests/websocket/tests/hybi/sub-protocol.html |
+++ /dev/null |
@@ -1,51 +0,0 @@ |
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
-<html> |
-<head> |
-<script src="/js-test-resources/js-test.js"></script> |
-</head> |
-<body> |
-<div id="description"></div> |
-<div id="console"></div> |
-<script type="text/javascript"> |
-description("Test WebSocket handshake success with sub protocol."); |
- |
-window.jsTestIsAsync = true; |
- |
-var protocol; |
- |
-function endTest() |
-{ |
- shouldBe("protocol", '"sub-protocol"'); |
- finishJSTest(); |
-} |
- |
-var url = "ws://localhost:8880/protocol-test?protocol=sub-protocol"; |
-var ws = new WebSocket(url, "sub-protocol"); |
- |
-ws.onopen = function() |
-{ |
- debug("Connected"); |
-}; |
- |
-ws.onmessage = function (messageEvent) |
-{ |
- protocol = messageEvent.data; |
- ws.close(); |
-}; |
- |
-ws.onclose = function() |
-{ |
- endTest(); |
-}; |
- |
-function timeOutCallback() |
-{ |
- debug("Timed out in state: " + ws.readyState); |
- endTest(); |
-} |
- |
-var timeoutID = setTimeout(timeOutCallback, 3000); |
- |
-</script> |
-</body> |
-</html> |