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

Unified Diff: LayoutTests/http/tests/websocket/tests/hybi/workers/worker-handshake-challenge-randomness.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/worker-handshake-challenge-randomness.html
diff --git a/LayoutTests/http/tests/websocket/tests/hybi/workers/worker-handshake-challenge-randomness.html b/LayoutTests/http/tests/websocket/tests/hybi/workers/worker-handshake-challenge-randomness.html
deleted file mode 100644
index ea028ca5d7d2881c90465c07a2f6913020e6c2ed..0000000000000000000000000000000000000000
--- a/LayoutTests/http/tests/websocket/tests/hybi/workers/worker-handshake-challenge-randomness.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
-<html>
-<head></head>
-<body>
-<p>Handshake request should contain random challenge values (in a worker process).</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-handshake-challenge-randomness.js');
-worker.onmessage = function (evt) {
- log(evt.data);
- if (evt.data == "DONE")
- endTest();
-};
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698