Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(346)

Side by Side Diff: LayoutTests/http/tests/websocket/invalid-subprotocols.html

Issue 99083002: WIP: Migrate generated bindings to new ExceptionState constructor. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase. Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="/js-test-resources/js-test.js"></script> 4 <script src="/js-test-resources/js-test.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <div id="description"></div> 7 <div id="description"></div>
8 <div id="console"></div> 8 <div id="console"></div>
9 <script type="text/javascript"> 9 <script type="text/javascript">
10 description("WebSocket should fail if invalid subprotocols are specified"); 10 description("WebSocket should fail if invalid subprotocols are specified");
11 11
12 var url = "ws://127.0.0.1:8880/websocket/tests/simple"; 12 var url = "ws://127.0.0.1:8880/websocket/tests/simple";
13 shouldThrow("new WebSocket(url, 'a b')", '"SyntaxError: Failed to execute \'conn ect\' on \'WebSocket\': The subprotocol \'a b\' is invalid."'); 13 shouldThrow("new WebSocket(url, 'a b')", '"SyntaxError: The subprotocol \'a b\' is invalid."');
14 shouldThrow("new WebSocket(url, 'a,b')", '"SyntaxError: Failed to execute \'conn ect\' on \'WebSocket\': The subprotocol \'a,b\' is invalid."'); 14 shouldThrow("new WebSocket(url, 'a,b')", '"SyntaxError: The subprotocol \'a,b\' is invalid."');
15 shouldThrow("new WebSocket(url, 'a\\0b')", '"SyntaxError: Failed to execute \'co nnect\' on \'WebSocket\': The subprotocol \'a\\\\u0000b\' is invalid."'); 15 shouldThrow("new WebSocket(url, 'a\\0b')", '"SyntaxError: The subprotocol \'a\\\ \u0000b\' is invalid."');
16 shouldThrow("new WebSocket(url, '\\u3042')", '"SyntaxError: Failed to execute \' connect\' on \'WebSocket\': The subprotocol \'\\\\u3042\' is invalid."'); 16 shouldThrow("new WebSocket(url, '\\u3042')", '"SyntaxError: The subprotocol \'\\ \\u3042\' is invalid."');
17 shouldThrow("new WebSocket(url, ['a', 'b', 'c d'])", '"SyntaxError: Failed to ex ecute \'connect\' on \'WebSocket\': The subprotocol \'c d\' is invalid."'); 17 shouldThrow("new WebSocket(url, ['a', 'b', 'c d'])", '"SyntaxError: The subproto col \'c d\' is invalid."');
18 shouldThrow("new WebSocket(url, ['a', 'b', 'c', 'a'])", '"SyntaxError: Failed to execute \'connect\' on \'WebSocket\': The subprotocol \'a\' is duplicated."'); 18 shouldThrow("new WebSocket(url, ['a', 'b', 'c', 'a'])", '"SyntaxError: The subpr otocol \'a\' is duplicated."');
19 19
20 </script> 20 </script>
21 </body> 21 </body>
22 </html> 22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698