https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 0c61d8d031ae0183c8682306851fb778af6df825 authored by Brian Burg on 16 July 2018, 23:05:19 UTC
webdriver: fix expected key code for "Unidentified" keys
Tip revision: 0c61d8d
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