| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script src="/js-test-resources/js-test.js"></script> | 3 <script src="/js-test-resources/js-test.js"></script> |
| 4 </head> | 4 </head> |
| 5 <body> | 5 <body> |
| 6 <div id="description"></div> | 6 <div id="description"></div> |
| 7 <div id="console"></div> | 7 <div id="console"></div> |
| 8 <script> | 8 <script> |
| 9 description('Test that the browser doesn\'t crash for lots of Set-Cookies in a W
ebSocket handshake.'); | 9 description('Test that the browser doesn\'t crash for lots of Set-Cookies in a W
ebSocket handshake.'); |
| 10 | 10 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 shouldBeTrue('wasClean'); | 25 shouldBeTrue('wasClean'); |
| 26 finishJSTest(); | 26 finishJSTest(); |
| 27 }; | 27 }; |
| 28 ws.onerror = function () { | 28 ws.onerror = function () { |
| 29 debug('FAIL: A WebSocket connection has an error.'); | 29 debug('FAIL: A WebSocket connection has an error.'); |
| 30 finishJSTest(); | 30 finishJSTest(); |
| 31 }; | 31 }; |
| 32 </script> | 32 </script> |
| 33 </body> | 33 </body> |
| 34 </html> | 34 </html> |
| OLD | NEW |