| Index: LayoutTests/http/tests/websocket/tests/hybi/workers/worker-simple.html
|
| diff --git a/LayoutTests/http/tests/websocket/tests/hybi/workers/worker-simple.html b/LayoutTests/http/tests/websocket/tests/hybi/workers/worker-simple.html
|
| deleted file mode 100644
|
| index 0716ae13f81ea60494d37db240e53ff3fd23ae51..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/http/tests/websocket/tests/hybi/workers/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 Worker.</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 Worker('resources/worker-simple.js');
|
| -worker.onmessage = function (evt) {
|
| - log(evt.data);
|
| - if (evt.data == "DONE")
|
| - endTest();
|
| -};
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|