https://github.com/web-platform-tests/wpt
Raw File
Tip revision: aa5f597d05c9429f4513b490b03f13e8b2e10742 authored by Stephen Chenney on 12 December 2018, 20:34:28 UTC
Snap the snapped_dest_rect for backgrounds
Tip revision: aa5f597
Secure-Close-Reason-124Bytes.any.js
// META: script=websocket.sub.js

var test = async_test("Create Secure WebSocket - Close the Connection - close(code, 'reason more than 123 bytes') - SYNTAX_ERR is thrown");

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

wsocket.addEventListener('open', test.step_func(function(evt) {
  var reason = "0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123";
  assert_equals(reason.length, 124);
  assert_throws("SYNTAX_ERR", function() {
    wsocket.close(1000, reason)
  });
  test.done();
}), true);
back to top