summaryrefslogtreecommitdiff
path: root/chromium/net/data/websocket/split_packet_check.html
blob: 8e273ec2849659ac139d3833c3a44e2f57c1705c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<title>test ws split packet</title>
<script type="text/javascript">

var href = window.location.href;
var hostBegin = href.indexOf('/') + 2;
var hostEnd = href.lastIndexOf(':');
var host = href.slice(hostBegin, hostEnd);
var portBegin = hostEnd + 1;
var portEnd = href.lastIndexOf('/');
var port = href.slice(portBegin, portEnd);
var scheme = href.indexOf('https') >= 0 ? 'wss' : 'ws';
var url = scheme + '://' + host + ':' + port + '/close-with-split-packet';

// Do connection test.
var ws = new WebSocket(url);

ws.onopen = function()
{
  // Close WebSocket connection once it is established.
  ws.close();
}

ws.onclose = function(event)
{
  // Check wasClean, then set proper title.
  if (event.wasClean)
    document.title = 'PASS';
  else
    document.title = 'FAIL';
}

</script>
</head>
</html>