Chromium Code Reviews| Index: chrome/test/data/http/tests/ws.html |
| diff --git a/chrome/test/data/http/tests/wss.html b/chrome/test/data/http/tests/ws.html |
| similarity index 87% |
| copy from chrome/test/data/http/tests/wss.html |
| copy to chrome/test/data/http/tests/ws.html |
| index cef7fa796edfb3f264e245f38bddaf9a6429666b..95ae5f7eeaf1e3781d26a3b030d618cae24f76d1 100644 |
| --- a/chrome/test/data/http/tests/wss.html |
| +++ b/chrome/test/data/http/tests/ws.html |
| @@ -1,14 +1,14 @@ |
| <!DOCTYPE html> |
| <html> |
| <head> |
| -<title>test wss connection</title> |
| +<title>test ws connection</title> |
|
cbentzel
2012/08/22 20:19:43
Are there other tests which use ws.html?
bashi
2012/08/23 09:54:15
No tests use ws.html at this time.
|
| <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); |