OLD | NEW |
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> | 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
2 <html> | 2 <html> |
3 <head></head> | 3 <head></head> |
4 <body> | 4 <body> |
5 <p>Nested creation of two WebSockets should not cause a crash.</p> | 5 <p>Nested creation of two WebSockets should not cause a crash.</p> |
6 <p></p> | 6 <p></p> |
7 <p>On success, you will see a series of "PASS" messages, followed by "TEST COMPL
ETE".</p> | 7 <p>On success, you will see a series of "PASS" messages, followed by "TEST COMPL
ETE".</p> |
8 <pre id=log> | 8 <pre id=log> |
9 </pre> | 9 </pre> |
10 <script> | 10 <script> |
(...skipping 15 matching lines...) Expand all Loading... |
26 } | 26 } |
27 var worker = new Worker('resources/close-in-onmessage-crash.js'); | 27 var worker = new Worker('resources/close-in-onmessage-crash.js'); |
28 worker.onmessage = function (evt) { | 28 worker.onmessage = function (evt) { |
29 log(evt.data); | 29 log(evt.data); |
30 if (evt.data == "DONE") | 30 if (evt.data == "DONE") |
31 endTest(); | 31 endTest(); |
32 }; | 32 }; |
33 </script> | 33 </script> |
34 </body> | 34 </body> |
35 </html> | 35 </html> |
OLD | NEW |