| Index: trunk/src/net/data/websocket/connect_to.html
|
| ===================================================================
|
| --- trunk/src/net/data/websocket/connect_to.html (revision 282330)
|
| +++ trunk/src/net/data/websocket/connect_to.html (working copy)
|
| @@ -1,34 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<html>
|
| -<head>
|
| -<title>test ws connection</title>
|
| -<script type="text/javascript">
|
| -
|
| -var href = window.location.href;
|
| -var queryBegin = href.indexOf('?url=');
|
| -if (queryBegin == -1) {
|
| - console.log("Failed to find ?url= in URL");
|
| - document.title = 'FAIL';
|
| - throw "FAILURE";
|
| -}
|
| -var url = href.slice(queryBegin + 5);
|
| -
|
| -// Do connection test.
|
| -var ws = new WebSocket(url);
|
| -
|
| -ws.onopen = function()
|
| -{
|
| - // Set document title to 'PASS'. The test observer catches this title changes
|
| - // to know the result.
|
| - document.title = 'PASS';
|
| -}
|
| -
|
| -ws.onclose = function()
|
| -{
|
| - // Set document title to 'FAIL'.
|
| - document.title = 'FAIL';
|
| -}
|
| -
|
| -</script>
|
| -</head>
|
| -</html>
|
|
|