mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 21:00:42 +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
7 lines
318 B
JavaScript
7 lines
318 B
JavaScript
// META: script=websocket.sub.js
|
|
|
|
test(function() {
|
|
var ws = new WebSocket("ws://" + __SERVER__NAME + ":" + __PORT + "/" + __PATH,
|
|
"echo", "Stray argument")
|
|
assert_true(ws instanceof WebSocket, "Expected a WebSocket instance.")
|
|
}, "Calling the WebSocket constructor with too many arguments should not throw.")
|