summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/websockets/interfaces/WebSocket/close/close-connecting.html
blob: de038ca09f0ea6b24419e9ae3da1c621b6302f3c (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
<!doctype html>
<title>WebSockets: close() when connecting</title>
<meta name=timeout content=long>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src=../../../constants.sub.js></script>
<meta name="variant" content="?default">
<meta name="variant" content="?wss">
<div id=log></div>
<script>
async_test(function(t) {
  var ws = new WebSocket(SCHEME_DOMAIN_PORT+'/sleep_10_v13');
  t.step_timeout(function() {
    assert_equals(ws.readyState, ws.CONNECTING);
    ws.close();
    assert_equals(ws.readyState, ws.CLOSING);
    ws.onclose = t.step_func(function(e) {
      assert_equals(ws.readyState, ws.CLOSED);
      assert_equals(e.wasClean, false);
      t.done();
    });
  }, 1000);
  ws.onopen = ws.onclose = t.unreached_func();
});
</script>