mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-12 06:08:24 +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
20 lines
520 B
JavaScript
20 lines
520 B
JavaScript
// META: script=websocket.sub.js
|
|
|
|
[
|
|
[0, "0"],
|
|
[500, "500"],
|
|
[NaN, "NaN"],
|
|
["string", "String"],
|
|
[null, "null"],
|
|
[0x10000 + 1000, "2**16+1000"],
|
|
].forEach(function(t) {
|
|
[true, false].forEach(function(secure) {
|
|
test(function() {
|
|
var ws = CreateWebSocket(secure, false, false);
|
|
assert_throws("InvalidAccessError", function() {
|
|
ws.close(t[0]);
|
|
});
|
|
wsocket.onerror = this.unreached_func();
|
|
}, t[1] + " on a " + (secure ? "secure" : "insecure") + " websocket");
|
|
});
|
|
});
|