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

Unified Diff: LayoutTests/http/tests/websocket/tests/hybi/workers/close-in-shared-worker.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/workers/close-in-shared-worker.html
diff --git a/LayoutTests/http/tests/websocket/tests/hybi/workers/close-in-shared-worker.html b/LayoutTests/http/tests/websocket/tests/hybi/workers/close-in-shared-worker.html
deleted file mode 100644
index ac5f8b74671201661a5866c5d48fb458c2124978..0000000000000000000000000000000000000000
--- a/LayoutTests/http/tests/websocket/tests/hybi/workers/close-in-shared-worker.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
-<html>
-<head></head>
-<body>
-<p>Test for WebSocket close 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/close-in-worker.js', 'websocketCloseInWorker');
-worker.port.onmessage = function (evt) {
- log(evt.data);
- if (evt.data == "DONE")
- endTest();
-};
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698