| 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);
|
|
|