https://github.com/web-platform-tests/wpt
Raw File
Tip revision: ffa8120532d7c0f9a8f2eb4aca9e13073ab557cd authored by Marcos Cáceres on 28 November 2018, 04:56:37 UTC
Another typo
Tip revision: ffa8120
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