web animation updates

This commit is contained in:
Adam Bradley
2015-06-10 15:31:15 -05:00
parent abcd8af221
commit f6a2c29605
191 changed files with 17692 additions and 29 deletions

View File

@ -0,0 +1,16 @@
suite('tick-tests', function() {
setup(function() { webAnimations1.timeline._animations = []; });
test('animations are in effect but ticking stops once forward fill is reached', function() {
tick(90);
var animation = document.body.animate([], {duration: 1000, fill: 'forwards'});
tick(100);
tick(600);
assert.equal(webAnimations1.timeline._animations.length, 1);
assert.equal(isTicking(), true);
tick(1100);
assert.equal(animation.finished, true);
assert.equal(webAnimations1.timeline._animations.length, 1);
assert.equal(isTicking(), false);
});
});