blob: 357748a7c4df65f34c00fafa4a96a3a427fa2508 [file] [log] [blame]
// META: script=websocket.sub.js
var test = async_test("Create WebSocket - Close the Connection - close(code, 'reason more than 123 bytes') - SYNTAX_ERR is thrown");
var wsocket = CreateWebSocket(false, 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);