Index: LayoutTests/http/tests/websocket/tests/hybi/workers/multiple-subprotocols.html |
diff --git a/LayoutTests/http/tests/websocket/tests/hybi/workers/multiple-subprotocols.html b/LayoutTests/http/tests/websocket/tests/hybi/workers/multiple-subprotocols.html |
deleted file mode 100644 |
index 54ad255807fd3999fc887375751794173361273c..0000000000000000000000000000000000000000 |
--- a/LayoutTests/http/tests/websocket/tests/hybi/workers/multiple-subprotocols.html |
+++ /dev/null |
@@ -1,35 +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("Test WebSocket subprotocol negotiation in workers."); |
- |
-window.jsTestIsAsync = true; |
- |
-function startsWith(str, prefix) |
-{ |
- return str.indexOf(prefix) == 0; |
-} |
- |
-var worker = new Worker("resources/multiple-subprotocols.js"); |
-worker.onmessage = function (event) |
-{ |
- var message = event.data; |
- if (startsWith(message, "PASS")) |
- testPassed(message); |
- else if (startsWith(message, "FAIL")) |
- testFailed(message) |
- else |
- debug(message); |
- if (message === "DONE") |
- finishJSTest(); |
-}; |
- |
-</script> |
-</body> |
-</html> |