Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(294)

Unified Diff: LayoutTests/http/tests/websocket/tests/hybi/websocket-pending-activity.html

Issue 101143002: Remove hybi sub directory for WebSocket layout tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698