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

Unified Diff: net/data/websocket/websocket_shared_worker.html

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 months 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
« no previous file with comments | « net/data/websocket/truncated-headers_wsh.py ('k') | net/data/websocket/websocket_worker_simple.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/data/websocket/websocket_shared_worker.html
diff --git a/net/data/websocket/websocket_shared_worker.html b/net/data/websocket/websocket_shared_worker.html
deleted file mode 100644
index 2156465f813f1e21f153e1e9282b74646d41832d..0000000000000000000000000000000000000000
--- a/net/data/websocket/websocket_shared_worker.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<html>
-<body>
-<div id=result></div>
-<script>
-function log(message)
-{
- document.getElementById("result").innerHTML += message + "<br>";
-}
-var worker = new SharedWorker("websocket_worker_simple.js");
-var protocol = location.protocol.replace('http', 'ws');
-var url = protocol + '//' + location.host + '/echo-with-no-extension';
-worker.port.onmessage = function (evt) {
- log(evt.data);
- if (evt.data == "DONE") {
- document.title = "OK";
- } else {
- document.title = "FAIL";
- }
-};
-worker.port.postMessage(url);
-
-</script>
-</body>
-</html>
« no previous file with comments | « net/data/websocket/truncated-headers_wsh.py ('k') | net/data/websocket/websocket_worker_simple.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698