https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 86810a8ba02b013c4d54c6bc3aebb21fb2c321cf authored by Josh Matthews on 05 October 2018, 00:14:14 UTC
Fix typo in focus-visible selector test.
Tip revision: 86810a8
Close-undefined.any.js
// META: script=websocket.sub.js

var test = async_test();

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

wsocket.addEventListener('open', test.step_func(function(evt) {
  wsocket.close(undefined);
  test.done();
}), true);
back to top