3 <script src=
"../resources/testharness.js"></script>
4 <script src=
"../resources/testharnessreport.js"></script>
6 var anim1
= document
.body
.animate([], 100000);
7 var anim2
= document
.body
.animate([], 100000);
8 var anim3
= document
.body
.animate([], 100000);
10 var noFinish
= async_test('Animation finish event should not fire when cancelled');
12 anim1
.onfinish = function() {
13 noFinish
.step(function() {
18 anim2
.onfinish = function() {
19 noFinish
.step(function() {
24 anim3
.onfinish = function() {