https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 10f69dbaa99bb91a7cf9f290fff6503b0ab56ee4 authored by James Graham on 17 September 2018, 15:10:55 UTC
Correctly handle ScriptTimeoutException in the WebDriver executor
Tip revision: 10f69db
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