| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html> |
| 2 <meta charset=utf-8> |
| 3 <title>Garbage collect an animation with a finish promise</title> |
| 4 <script src="../resources/testharness.js"></script> |
| 5 <script src="../resources/testharnessreport.js"></script> |
| 6 <body> |
| 7 <script> |
| 8 function gc() |
| 9 { |
| 10 return GCController.collectAll(); |
| 11 } |
| 12 |
| 13 async_test(t => { |
| 14 assert_exists(window, "GCController", "gc controller needed"); |
| 15 setInterval(gc, 0); |
| 16 |
| 17 var anim = document.body.animate(null, 1); |
| 18 var promise = anim.finished; |
| 19 |
| 20 promise.then(() => { |
| 21 t.done(); |
| 22 }); |
| 23 }, 'Animation finish promise resolved if animation is garbage collected'); |
| 24 </script> |
| 25 </body> |
| OLD | NEW |