Index: LayoutTests/http/tests/websocket/tests/hybi/long-control-frame.html |
diff --git a/LayoutTests/http/tests/websocket/tests/hybi/long-control-frame.html b/LayoutTests/http/tests/websocket/tests/hybi/long-control-frame.html |
deleted file mode 100644 |
index ba3c26418b80a9f946c7b0a068cc660af4cfaf15..0000000000000000000000000000000000000000 |
--- a/LayoutTests/http/tests/websocket/tests/hybi/long-control-frame.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 whether WebSocket rejects control frames longer than 125 bytes."); |
- |
-window.jsTestIsAsync = true; |
- |
-var url = "ws://localhost:8880/long-control-frame"; |
-var ws = new WebSocket(url); |
-var closeEvent; |
-var message; |
- |
-ws.onopen = function() |
-{ |
- debug("onopen() was called."); |
-}; |
- |
-ws.onclose = function(event) |
-{ |
- closeEvent = event; |
- shouldBeFalse("closeEvent.wasClean"); |
- finishJSTest(); |
-}; |
- |
-</script> |
-</body> |
-</html> |