Index: LayoutTests/http/tests/websocket/tests/hybi/useragent-in-openinghandshake.html |
diff --git a/LayoutTests/http/tests/websocket/tests/hybi/useragent-in-openinghandshake.html b/LayoutTests/http/tests/websocket/tests/hybi/useragent-in-openinghandshake.html |
deleted file mode 100644 |
index f74b9bb52e1474e12c71a0b42957268282f0c74a..0000000000000000000000000000000000000000 |
--- a/LayoutTests/http/tests/websocket/tests/hybi/useragent-in-openinghandshake.html |
+++ /dev/null |
@@ -1,40 +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 test to check if opening handshake contains User-Agent header"); |
- |
-window.jsTestIsAsync = true; |
- |
-function endTest() |
-{ |
- clearTimeout(timeoutID); |
- finishJSTest(); |
-} |
- |
-var ws = new WebSocket("ws://localhost:8880/sendback_ua"); |
- |
-ws.onmessage = function(messageEvent) |
-{ |
- // The server should echo back the User-Agent header value. |
- event = messageEvent; |
- shouldBe("event.data", "navigator.userAgent"); |
- finishJSTest(); |
-}; |
- |
-function timeOutCallback() |
-{ |
- testFailed("Timed out in state: " + ws.readyState); |
- endTest(); |
-} |
- |
-var timeoutID = setTimeout(timeOutCallback, 3000); |
- |
-</script> |
-</body> |
-</html> |