Index: LayoutTests/http/tests/websocket/tests/hybi/workers/shared-worker-simple.html |
diff --git a/LayoutTests/http/tests/websocket/tests/hybi/workers/shared-worker-simple.html b/LayoutTests/http/tests/websocket/tests/hybi/workers/shared-worker-simple.html |
deleted file mode 100644 |
index a7aefbc68b12600626f196218b01263b5c3ede0f..0000000000000000000000000000000000000000 |
--- a/LayoutTests/http/tests/websocket/tests/hybi/workers/shared-worker-simple.html |
+++ /dev/null |
@@ -1,35 +0,0 @@ |
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
-<html> |
-<head></head> |
-<body> |
-<p>Test for WebSocket in SharedWorker.</p> |
-<p></p> |
-<p>On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".</p> |
-<pre id=log> |
-</pre> |
-<script> |
-if (window.testRunner) { |
- testRunner.dumpAsText(); |
- testRunner.waitUntilDone(); |
-} |
- |
-function log(message) |
-{ |
- document.getElementById("log").innerHTML += message + "\n"; |
-} |
- |
-function endTest() |
-{ |
- log("TEST COMPLETE"); |
- if (window.testRunner) |
- testRunner.notifyDone(); |
-} |
-var worker = new SharedWorker('resources/worker-simple.js', 'websocketSimple'); |
-worker.port.onmessage = function (evt) { |
- log(evt.data); |
- if (evt.data == "DONE") |
- endTest(); |
-}; |
-</script> |
-</body> |
-</html> |