| Index: third_party/WebKit/LayoutTests/animations/change-keyframes.html
|
| diff --git a/third_party/WebKit/LayoutTests/animations/change-keyframes.html b/third_party/WebKit/LayoutTests/animations/change-keyframes.html
|
| index 97fda5a4cefb17df3182961a8f37ecc9c833d9d0..184aeb7156378b0fecb88552ecd1593226fd3cd0 100644
|
| --- a/third_party/WebKit/LayoutTests/animations/change-keyframes.html
|
| +++ b/third_party/WebKit/LayoutTests/animations/change-keyframes.html
|
| @@ -43,7 +43,7 @@
|
|
|
| // A forced style-recalc aborts the previous animation.
|
| box.style.animationName = "none";
|
| - assert_equals(getComputedStyle(box).left, 'auto', 'left');
|
| + assert_equals(getComputedStyle(box).left, '0px', 'left');
|
|
|
| // Change keyframes.
|
| var keyframes = findKeyframesRule("anim");
|
| @@ -54,7 +54,7 @@
|
| box.style.webkitAnimationName = "anim";
|
|
|
| // The left property should reset to auto and top should be animating.
|
| - assert_equals(getComputedStyle(box).left, 'auto', 'left');
|
| + assert_equals(getComputedStyle(box).left, '0px', 'left');
|
| assert_equals(getComputedStyle(box).top, '100px', 'top');
|
| }, "Check that changes to keyframe rules take effect");
|
| </script>
|
|
|