1
0
Fork 0
firefox/testing/web-platform/tests/websockets/Close-readyState-Closing.any.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

20 lines
658 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 - readyState should be in CLOSING state just before onclose is called");
var wsocket = CreateWebSocket(false, false);
var isOpenCalled = false;
wsocket.addEventListener('open', test.step_func(function(evt) {
isOpenCalled = true;
wsocket.close();
assert_equals(wsocket.readyState, 2, "readyState should be 2(CLOSING)");
}), true);
wsocket.addEventListener('close', test.step_func(function(evt) {
assert_true(isOpenCalled, 'open must be called');
test.done();
}), true);