| OLD | NEW |
| 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> | 9 <script> |
| 10 description("Test whether WebSocket ignores unsolicited negotiation response."); | 10 description("Test whether WebSocket ignores unsolicited negotiation response."); |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 ws.onclose = function(event) | 26 ws.onclose = function(event) |
| 27 { | 27 { |
| 28 window.event = event; | 28 window.event = event; |
| 29 shouldBeTrue('event.wasClean'); | 29 shouldBeTrue('event.wasClean'); |
| 30 finishJSTest(); | 30 finishJSTest(); |
| 31 }; | 31 }; |
| 32 | 32 |
| 33 </script> | 33 </script> |
| 34 </body> | 34 </body> |
| 35 </html> | 35 </html> |
| OLD | NEW |