21 lines
734 B
JavaScript
21 lines
734 B
JavaScript
// META: script=constants.sub.js
|
|
// META: variant=?default
|
|
// META: variant=?wss
|
|
// META: variant=?wpt_flags=h2
|
|
|
|
var test = async_test("Create WebSocket - Close the Connection - close() - return close code is 1005 - Connection should be closed");
|
|
|
|
var wsocket = CreateWebSocket(false, false);
|
|
var isOpenCalled = false;
|
|
|
|
wsocket.addEventListener('open', test.step_func(function(evt) {
|
|
wsocket.close();
|
|
isOpenCalled = true;
|
|
}), true);
|
|
|
|
wsocket.addEventListener('close', test.step_func(function(evt) {
|
|
assert_true(isOpenCalled, "WebSocket connection should be open");
|
|
assert_equals(evt.code, 1005, "CloseEvent.code should be 1005");
|
|
assert_equals(evt.reason, "", "CloseEvent.reason should be empty");
|
|
test.done();
|
|
}), true);
|