4 <title>Connect to a WebSocket server
</title>
5 <script type=
"text/javascript">
6 var protocol
= location
.protocol
.replace('http', 'ws');
7 var url
= protocol
+ '//' + location
.host
+ '/count-connection';
10 var ws
= new WebSocket(url
);
12 ws
.onmessage = function(e
) {
13 document
.title
= (e
.data
=== 'open: 1, closed: 1' ? 'PASS' : 'FAIL');
16 ws
.onclose = function() {
17 document
.title
= 'FAIL';