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

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

Issue 416333004: Revert of [WebSocket] Send a close frame when the renderer process is gone. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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/README ('k') | net/data/websocket/count-connection_wsh.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/data/websocket/connect_check.html
diff --git a/net/data/websocket/connect_check.html b/net/data/websocket/connect_check.html
index 8d8e815b114c8822fbf517eef375ea1575733ce0..4a1ca8c5dfc0b7cb86b86f019a3a4038db867f35 100644
--- a/net/data/websocket/connect_check.html
+++ b/net/data/websocket/connect_check.html
@@ -3,8 +3,17 @@
<head>
<title>test ws connection</title>
<script type="text/javascript">
-var protocol = location.protocol.replace('http', 'ws');
-var url = protocol + '//' + location.host + '/echo-with-no-extension';
+
+var href = window.location.href;
+var hostBegin = href.indexOf('/') + 2;
+var hostEnd = href.lastIndexOf(':');
+var host = href.slice(hostBegin, hostEnd);
+var portBegin = hostEnd + 1;
+var portEnd = href.lastIndexOf('/');
+var port = href.slice(portBegin, portEnd);
+var scheme = href.indexOf('https') >= 0 ? 'wss' : 'ws';
+var url = scheme + '://' + host + ':' + port + '/echo-with-no-extension';
+
// Do connection test.
var ws = new WebSocket(url);
« no previous file with comments | « net/data/websocket/README ('k') | net/data/websocket/count-connection_wsh.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698