https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 26e6ef3f13680c4d02b33bf1235884119f9e26e7 authored by James Graham on 04 April 2018, 18:33:40 UTC
Add long timeout to unstable CSP tests, a=testonly on a CLOSED TREE
Tip revision: 26e6ef3
close-invalid.any.js
// 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");
    });
});
back to top