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

Unified Diff: LayoutTests/http/tests/websocket/tests/hybi/workers/resources/multiple-subprotocols.js

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/workers/resources/multiple-subprotocols.js
diff --git a/LayoutTests/http/tests/websocket/tests/hybi/workers/resources/multiple-subprotocols.js b/LayoutTests/http/tests/websocket/tests/hybi/workers/resources/multiple-subprotocols.js
deleted file mode 100644
index d0d96274787c8336467f104bc415980970e721e8..0000000000000000000000000000000000000000
--- a/LayoutTests/http/tests/websocket/tests/hybi/workers/resources/multiple-subprotocols.js
+++ /dev/null
@@ -1,54 +0,0 @@
-var ws = new WebSocket("ws://127.0.0.1:8880/workers/resources/protocol-test?protocol=superchat", ["chat", "superchat"]);
-
-if (ws.protocol === "")
- postMessage("PASS: ws.protocol is equal to \"\"");
-else
- postMessage("FAIL: ws.protocol should be \"\" but was \"" + ws.protocol + "\"");
-
-ws.onopen = function()
-{
- postMessage("INFO: Connected");
- if (ws.protocol === "superchat")
- postMessage("PASS: ws.protocol is equal to \"superchat\"");
- else
- postMessage("FAIL: ws.protocol should be \"superchat\" but was \"" + ws.protocol + "\"");
-};
-
-ws.onmessage = function(event)
-{
- var receivedMessage = event.data;
- postMessage("INFO: Received: " + receivedMessage);
- if (receivedMessage === "superchat")
- postMessage("PASS: receivedMessage is equal to \"superchat\"");
- else
- postMessage("FAIL: receivedMessage should be \"superchat\" but was \"" + ws.protocol + "\"");
-};
-
-ws.onclose = function(closeEvent)
-{
- postMessage("INFO: Closed");
-
- if (ws.protocol === "superchat")
- postMessage("PASS: ws.protocol is equal to \"superchat\"");
- else
- postMessage("FAIL: ws.protocol should be \"superchat\" but was \"" + ws.protocol + "\"");
-
- if (closeEvent.wasClean === true)
- postMessage("PASS: closeEvent.wasClean is true");
- else
- postMessage("FAIL: closeEvent.wasClean should be true but was \"" + closeEvent.wasClean + "\"");
-
- setTimeout("checkAfterOnClose()", 0);
-};
-
-function checkAfterOnClose()
-{
- postMessage("INFO: Exited onclose handler");
-
- if (ws.protocol === "superchat")
- postMessage("PASS: ws.protocol is equal to \"superchat\"");
- else
- postMessage("FAIL: ws.protocol should be \"superchat\" but was \"" + ws.protocol + "\"");
-
- postMessage("DONE");
-}

Powered by Google App Engine
This is Rietveld 408576698