https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 42a98283681188744c47f2bba33ad818a5b8d585 authored by Stephen Chenney on 20 December 2018, 17:40:54 UTC
Fix table cell background painting under zoom and min-width
Tip revision: 42a9828
Secure-Close-3000-verify-code.any.js
// META: script=websocket.sub.js

var testOpen = async_test("Create Secure WebSocket - Close the Connection - close(3000, reason) - Connection should be opened");
var testClose = async_test("Create Secure WebSocket - Close the Connection - close(3000, reason) - verify return code is 3000 - Connection should be closed");

var wsocket = CreateWebSocket(true, false, false);
var isOpenCalled = false;

wsocket.addEventListener('open', testOpen.step_func(function(evt) {
  wsocket.close(3000, "Clean Close");
  isOpenCalled = true;
  testOpen.done();
}), true);

wsocket.addEventListener('close', testClose.step_func(function(evt) {
  assert_true(isOpenCalled, "WebSocket connection should be open");
  assert_equals(evt.code, 3000, "CloseEvent.code should be 3000");
  testClose.done();
}), true);
back to top