OLD | NEW |
1 <body> | 1 <body> |
2 <p>Test that MessagePort messages are delivered even if both ports are in transi
t (cloned).</p> | 2 <p>Test that MessagePort messages are delivered even if both ports are in transi
t (cloned).</p> |
3 <p>Should say PASS twice.</p> | 3 <p>Should say PASS twice.</p> |
4 <pre id=log></pre> | 4 <pre id=log></pre> |
| 5 <script src="../../resources/gc.js"></script> |
5 <script> | 6 <script> |
6 function gc() | |
7 { | |
8 if (window.GCController) | |
9 return GCController.collect(); | |
10 | |
11 for (var i = 0; i < 10000; i++) { // force garbage collection (FF requires a
bout 9K allocations before a collect) | |
12 var s = new String("abc"); | |
13 } | |
14 } | |
15 | 7 |
16 function log(message) | 8 function log(message) |
17 { | 9 { |
18 document.getElementById("log").innerHTML += message + "<br>"; | 10 document.getElementById("log").innerHTML += message + "<br>"; |
19 } | 11 } |
20 | 12 |
21 if (window.testRunner) { | 13 if (window.testRunner) { |
22 testRunner.dumpAsText(); | 14 testRunner.dumpAsText(); |
23 testRunner.waitUntilDone(); | 15 testRunner.waitUntilDone(); |
24 } | 16 } |
(...skipping 24 matching lines...) Expand all Loading... |
49 } | 41 } |
50 channel = 0; | 42 channel = 0; |
51 channel2 = 0; | 43 channel2 = 0; |
52 gc(); | 44 gc(); |
53 } | 45 } |
54 | 46 |
55 test1(); | 47 test1(); |
56 | 48 |
57 </script> | 49 </script> |
58 </body> | 50 </body> |
OLD | NEW |