4 <script src=
"/js-test-resources/js-test.js"></script>
7 <div id=
"description"></div>
8 <div id=
"console"></div>
9 <script type=
"text/javascript">
10 description("WebSocket should fail if invalid subprotocols are specified");
12 var url
= "ws://127.0.0.1:8880/websocket/tests/simple";
13 shouldThrow("new WebSocket(url, 'a b')", '"SyntaxError: Failed to construct \'WebSocket\': The subprotocol \'a b\' is invalid."');
14 shouldThrow("new WebSocket(url, 'a,b')", '"SyntaxError: Failed to construct \'WebSocket\': The subprotocol \'a,b\' is invalid."');
15 shouldThrow("new WebSocket(url, 'a\\0b')", '"SyntaxError: Failed to construct \'WebSocket\': The subprotocol \'a\\\\u0000b\' is invalid."');
16 shouldThrow("new WebSocket(url, '\\u3042')", '"SyntaxError: Failed to construct \'WebSocket\': The subprotocol \'\\\\u3042\' is invalid."');
17 shouldThrow("new WebSocket(url, ['a', 'b', 'c d'])", '"SyntaxError: Failed to construct \'WebSocket\': The subprotocol \'c d\' is invalid."');
18 shouldThrow("new WebSocket(url, ['a', 'b', 'c', 'a'])", '"SyntaxError: Failed to construct \'WebSocket\': The subprotocol \'a\' is duplicated."');