https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 6881c71edb4a38f1299ae978db951ba0971e3461 authored by Xianzhu Wang on 20 December 2018, 18:18:36 UTC
[CI] Use LayoutBox::ShouldClipOverflow() for LayoutReplaced
Tip revision: 6881c71
Send-null.any.js
// META: script=websocket.sub.js

var testOpen = async_test("Send null data on a WebSocket - Connection should be opened");
var testMessage = async_test("Send null data on a WebSocket - Message should be received");
var testClose = async_test("Send null data on a WebSocket - Connection should be closed");

var data = null;
var nullReturned = false;
var wsocket = CreateWebSocket(false, false, false);
var isOpenCalled = false;

wsocket.addEventListener('open', testOpen.step_func(function(evt) {
  wsocket.send(data);
  isOpenCalled = true;
  testOpen.done();
}), true);

wsocket.addEventListener('message', testMessage.step_func(function(evt) {
  if ("null" == evt.data || "" == evt.data)
    nullReturned = true;
  assert_true(nullReturned);
  wsocket.close();
  testMessage.done();
}), true);

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