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's message event should not be invoked while we are waitin
g for the result of a synchronous operation (such as WebSocket.send()) on worker
s."); | 10 description("WebSocket's message event should not be invoked while we are waitin
g for the result of a synchronous operation (such as WebSocket.send()) on worker
s."); |
(...skipping 15 matching lines...) Expand all Loading... |
26 testFailed(message) | 26 testFailed(message) |
27 else | 27 else |
28 debug(message); | 28 debug(message); |
29 if (message === "DONE") | 29 if (message === "DONE") |
30 finishJSTest(); | 30 finishJSTest(); |
31 }; | 31 }; |
32 | 32 |
33 </script> | 33 </script> |
34 </body> | 34 </body> |
35 </html> | 35 </html> |
OLD | NEW |