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

Unified Diff: LayoutTests/http/tests/websocket/tests/hybi/workers/resources/worker-reload-iframe.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/resources/worker-reload-iframe.html
diff --git a/LayoutTests/http/tests/websocket/tests/hybi/workers/resources/worker-reload-iframe.html b/LayoutTests/http/tests/websocket/tests/hybi/workers/resources/worker-reload-iframe.html
deleted file mode 100644
index ea7d6d5192d2aa606de4992fe2fd3b2140655c5b..0000000000000000000000000000000000000000
--- a/LayoutTests/http/tests/websocket/tests/hybi/workers/resources/worker-reload-iframe.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<!DOCTYPE html>
-<html>
-<body>
-<div id="result">Running...</div>
-<script type="text/javascript">
-var repeat = 0;
-var regex = new RegExp("#repeat(\\d+)");
-var match = regex.exec(location.hash);
-if (match)
- repeat = parseInt(match[1]);
-
-if (repeat === 20) {
- document.getElementById("result").innerHTML = "Done.";
- parent.document.iframeFinished();
-} else {
- new Worker("worker-reload.js");
- location.href = "worker-reload-iframe.html#repeat" + (repeat + 1);
- setTimeout('location.reload()', 1);
-}
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698