blob: 8d8e815b114c8822fbf517eef375ea1575733ce0 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>test ws connection</title>
<script type="text/javascript">
var protocol = location.protocol.replace('http', 'ws');
var url = protocol + '//' + location.host + '/echo-with-no-extension';
// 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>