Skip to content

Commit

Permalink
Review change
Browse files Browse the repository at this point in the history
  • Loading branch information
alancutter committed Jul 14, 2016
1 parent 3e93896 commit 8692af3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,8 @@
test(function(t) {
var div = createDiv(t);
var anim = div.animate({ WebkitTransform: ['translateX(100px)', 'translateX(100px)'],
webkitTransform: ['translateX(100px)', 'translateX(100px)'] }, 1000);
webkitTransform: ['translateX(100px)', 'translateX(100px)'] },
{ duration: 100 * MS_PER_SEC, fill: 'both' });

anim.currentTime = 0;
assert_not_equals(getComputedStyle(div).getPropertyValue('-webkit-transform'), 'translateX(100px)');
Expand Down

0 comments on commit 8692af3

Please sign in to comment.