blob: f596328b923a9d9bf3259cef2257d63a851317b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// META: script=constants.sub.js
// META: variant=?default
// META: variant=?wss
// META: variant=?wpt_flags=h2
function testEventHandler(name) {
test(function() {
var ws = CreateWebSocket(true, false);
assert_equals(ws["on" + name], null);
ws["on" + name] = function() {};
ws["on" + name] = 2;
assert_equals(ws["on" + name], null);
}, "Event handler for " + name + " should have [TreatNonCallableAsNull]")
}
["open", "error", "close", "message"].forEach(testEventHandler);
|