https://github.com/web-platform-tests/wpt
Raw File
Tip revision: bf7cc00ba4855d78175d162308b5c59c6bed197d authored by Andy Paicu on 23 May 2018, 13:12:21 UTC
Prevent sandboxed documents from reusing the default window
Tip revision: bf7cc00
Secure-Close-Reason-124Bytes.any.js
// META: script=websocket.sub.js

var test = async_test("W3C WebSocket API - 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