Index: LayoutTests/http/tests/websocket/tests/hybi/long-invalid-header.html |
diff --git a/LayoutTests/http/tests/websocket/tests/hybi/long-invalid-header.html b/LayoutTests/http/tests/websocket/tests/hybi/long-invalid-header.html |
deleted file mode 100644 |
index 344dc93ce476a3a57a22c4cc2d2015813d4446c0..0000000000000000000000000000000000000000 |
--- a/LayoutTests/http/tests/websocket/tests/hybi/long-invalid-header.html |
+++ /dev/null |
@@ -1,31 +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("Make sure WebSocket gives errors on long invalid upgrade header."); |
- |
-window.jsTestIsAsync = true; |
- |
-function finish() { |
- clearTimeout(timeoutID); |
- finishJSTest(); |
-} |
- |
-var ws = new WebSocket("ws://127.0.0.1:8880/long-invalid-header"); |
-ws.onopen = function () { |
- debug("WebSocket is open"); |
-}; |
-ws.onclose = function () { |
- debug("WebSocket is closed"); |
- finish(); |
-}; |
-var timeoutID = setTimeout("finish()", 2000); |
- |
-</script> |
-</body> |
-</html> |