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

Unified Diff: chrome/test/data/http/tests/ws.html

Issue 10875022: [Do not check in.] (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Simplify state transition Created 8 years, 4 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 | « chrome/chrome_tests.gypi ('k') | net/socket_stream/socket_stream.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/http/tests/ws.html
===================================================================
--- chrome/test/data/http/tests/ws.html (revision 152801)
+++ chrome/test/data/http/tests/ws.html (working copy)
@@ -1,14 +1,14 @@
<!DOCTYPE html>
<html>
<head>
-<title>test wss connection</title>
+<title>test ws connection</title>
<script type="text/javascript">
var href = window.location.href;
var portBegin = href.lastIndexOf(':') + 1;
var portEnd = href.lastIndexOf('/');
var port = href.slice(portBegin, portEnd);
-var url = 'wss://localhost:' + port + '/websocket/tests/echo';
+var url = 'ws://localhost:' + port + '/websocket/tests/echo';
// Do connection test.
var ws = new WebSocket(url);
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | net/socket_stream/socket_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698