fune/testing/web-platform/tests/websockets/eventhandlers.any.js
moz-wptsync-bot fd759c62fc Bug 1456516 [wpt PR 10606] - Reindent websocket *.any.js files, a=testonly
Automatic update from web-platform-testsEditorial: Reindent websocket *.any.js files

Command used:
find . -name "*.any.js" | xargs -I {} js-beautify -r -s 2 -n {}

--

wpt-commits: 78d32dd2ed106a59a34664ade2274426601365de
wpt-pr: 10606
2018-05-02 07:49:12 +01:00

13 lines
474 B
JavaScript

// META: script=websocket.sub.js
function testEventHandler(name) {
test(function() {
var ws = new WebSocket("ws://" + __SERVER__NAME + ":" + __PORT + "/" + __PATH,
"echo")
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);