Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / websocket / invalid-subprotocols.html
blobeaae30f639ec4f17f739ebb038f19c910a9edee4
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script src="/js-test-resources/js-test.js"></script>
5 </head>
6 <body>
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."');
20 </script>
21 </body>
22 </html>