OLD | NEW |
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> | 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
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("Test if WebSocket fires close event when WebSocket is opened and cl
ose() is called on it before open event is dispatched."); | 10 description("Test if WebSocket fires close event when WebSocket is opened and cl
ose() is called on it before open event is dispatched."); |
(...skipping 17 matching lines...) Expand all Loading... |
28 ws.onclose = test; | 28 ws.onclose = test; |
29 ws.close(); | 29 ws.close(); |
30 } | 30 } |
31 }; | 31 }; |
32 | 32 |
33 test(); | 33 test(); |
34 | 34 |
35 </script> | 35 </script> |
36 </body> | 36 </body> |
37 </html> | 37 </html> |
OLD | NEW |