Index: LayoutTests/http/tests/websocket/tests/hybi/no-subprotocol.html |
diff --git a/LayoutTests/http/tests/websocket/tests/hybi/no-subprotocol.html b/LayoutTests/http/tests/websocket/tests/hybi/no-subprotocol.html |
deleted file mode 100644 |
index c420ee57861cd6428ea4c943afa3758471290682..0000000000000000000000000000000000000000 |
--- a/LayoutTests/http/tests/websocket/tests/hybi/no-subprotocol.html |
+++ /dev/null |
@@ -1,43 +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 type="text/javascript"> |
-description("WebSocket's protocol attribute should be an empty string if the server did not provide Sec-WebSocket-Protocol header."); |
- |
-window.jsTestIsAsync = true; |
- |
-var ws = new WebSocket("ws://127.0.0.1:8880/simple"); |
-var closeEvent; |
- |
-shouldBeEqualToString("ws.protocol", ""); |
- |
-ws.onopen = function() |
-{ |
- debug("Connected"); |
- shouldBeEqualToString("ws.protocol", ""); |
-}; |
- |
-ws.onclose = function(event) |
-{ |
- debug("Closed"); |
- shouldBeEqualToString("ws.protocol", ""); |
- closeEvent = event; |
- shouldBeTrue("closeEvent.wasClean"); |
- setTimeout("checkAfterOnClose()", 0); |
-}; |
- |
-function checkAfterOnClose() |
-{ |
- debug("Exited onclose handler"); |
- shouldBeEqualToString("ws.protocol", ""); |
- finishJSTest(); |
-} |
- |
-</script> |
-</body> |
-</html> |