https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e765504c37c15353fc699292c329d5fa20df82c7 authored by maxlg@chromium.org on 01 September 2017, 15:41:53 UTC
[PerformanceObserver] Support the "buffered" flag in PerformanceObserver
Tip revision: e765504
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