https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 886f55b5a949bd22aa394d58084b1d56d182e000 authored by Frédéric Wang on 11 June 2018, 12:41:20 UTC
Regenerate WOFF2 support fonts
Tip revision: 886f55b
Create-asciiSep-protocol-string.any.js
// META: script=websocket.sub.js

test(function() {
  var asciiWithSep = "/echo";
  var wsocket;
  assert_throws("SYNTAX_ERR", function() {
    wsocket = CreateWebSocketWithAsciiSep(asciiWithSep)
  });
}, "W3C WebSocket API - Create WebSocket - Pass a valid URL and a protocol string with an ascii separator character - SYNTAX_ERR is thrown")
back to top