OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="../../fast/js/resources/js-test-pre.js"></script> | 3 <script src="../../fast/js/resources/js-test-pre.js"></script> |
4 <script src="resources/shared.js"></script> | 4 <script src="resources/shared.js"></script> |
5 </head> | 5 </head> |
6 <body> | 6 <body> |
7 <script> | 7 <script> |
8 | 8 |
9 description("Implicitly terminating worker with blocked setVersion call should a
llow later open calls to proceed"); | 9 description("Implicitly terminating worker with blocked setVersion call should a
llow later open calls to proceed"); |
10 | 10 |
(...skipping 26 matching lines...) Expand all Loading... |
37 if (event.data == "gotblocked") | 37 if (event.data == "gotblocked") |
38 self.location = self.location + "?second"; | 38 self.location = self.location + "?second"; |
39 else | 39 else |
40 originalOnMessage(event); | 40 originalOnMessage(event); |
41 }; | 41 }; |
42 } | 42 } |
43 | 43 |
44 test(); | 44 test(); |
45 | 45 |
46 </script> | 46 </script> |
47 <script src="../../fast/js/resources/js-test-post.js"></script> | |
48 </body> | 47 </body> |
49 </html> | 48 </html> |
OLD | NEW |