mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 05:08:36 +02:00
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
13 lines
474 B
JavaScript
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);
|