| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE html> | |
| 2 <script src="../resources/testharness.js"></script> | |
| 3 <script src="../resources/testharnessreport.js"></script> | |
| 4 <body> | |
| 5 <script> | |
| 6 var layoutTest = async_test('Finish event should be delivered even if a GC occur
s. This test passes if it does not time out.'); | |
| 7 var events = 0; | |
| 8 | |
| 9 function finish() { | |
| 10 if (window.GCController) | |
| 11 GCController.collect(); | |
| 12 if (++events == 2) | |
| 13 layoutTest.done(); | |
| 14 } | |
| 15 | |
| 16 // Use a distinct, unreferenced instance of the handler function. | |
| 17 document.body.animate([]).onfinish = finish.bind(); | |
| 18 document.body.animate([]).onfinish = finish.bind(); | |
| 19 | |
| 20 if (window.GCController) | |
| 21 GCController.collect(); | |
| 22 </script> | |
| OLD | NEW |