Index: LayoutTests/http/tests/websocket/tests/hybi/websocket-pending-activity.html |
diff --git a/LayoutTests/http/tests/websocket/tests/hybi/websocket-pending-activity.html b/LayoutTests/http/tests/websocket/tests/hybi/websocket-pending-activity.html |
deleted file mode 100644 |
index 9f12146f7513a83b06fda2ab306f10dfc56c8b50..0000000000000000000000000000000000000000 |
--- a/LayoutTests/http/tests/websocket/tests/hybi/websocket-pending-activity.html |
+++ /dev/null |
@@ -1,24 +0,0 @@ |
-<body onload="test()"> |
-<p>Should alert "PASS".</p> |
-<script src="/js-test-resources/js-test.js"></script> |
-<script> |
-if (window.testRunner) { |
- testRunner.dumpAsText(); |
- testRunner.waitUntilDone(); |
-} |
- |
-function test() |
-{ |
- var ws = new WebSocket("ws://127.0.0.1:8880/echo"); |
- ws.onopen = function() { |
- this.send("PASS"); |
- } |
- ws.onmessage = function(msg) { |
- alert(msg.data); |
- if (window.testRunner) |
- testRunner.notifyDone(); |
- } |
- ws = null; |
- gc(); |
-} |
-</script> |