blob: 7c6192555a939f7620b082ca224ec283eee93b26 (
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
|
<!doctype html>
<title>WebSockets: close() several times</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src=../../../constants.sub.js></script>
<meta name="variant" content="">
<meta name="variant" content="?wss">
<div id=log></div>
<script>
var i = 0;
async_test(function(t) {
var ws = new WebSocket(SCHEME_DOMAIN_PORT+'/');
ws.onclose = t.step_func(function(e) {
i++;
});
ws.close();
ws.close();
ws.close();
var f = t.step_func(function() {
if (i < 1) {
t.step_timeout(f, 500);
return;
}
assert_equals(i, 1);
t.done()
});
t.step_timeout(f, 500);
});
</script>
|