| 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 type="text/javascript"> | 9 <script type="text/javascript"> |
| 10 description("WebSocket: Send Blobs."); | 10 description("WebSocket: Send Blobs."); |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 ws.onclose = function(event) | 57 ws.onclose = function(event) |
| 58 { | 58 { |
| 59 closeEvent = event; | 59 closeEvent = event; |
| 60 shouldBeTrue("closeEvent.wasClean"); | 60 shouldBeTrue("closeEvent.wasClean"); |
| 61 finishJSTest(); | 61 finishJSTest(); |
| 62 }; | 62 }; |
| 63 | 63 |
| 64 </script> | 64 </script> |
| 65 </body> | 65 </body> |
| 66 </html> | 66 </html> |
| OLD | NEW |