Bug 1396442 - Use longer duration and fill:forwards to keep the animations running on the compositor. r?boris draft
authorHiroyuki Ikezoe <hikezoe@mozilla.com>
Mon, 04 Sep 2017 06:32:33 +0900
changeset 658336 5ab4cc00de0b9b216a88881e7b0ec64cc0d25948
parent 658333 0afabd3e5c27b0036517b96eecb1f8553d027179
child 658337 888befb08aeb6993754c833cc037c7426d7bb204
push id77721
push userhikezoe@mozilla.com
push dateSun, 03 Sep 2017 21:32:48 +0000
reviewersboris
bugs1396442
milestone57.0a1
Bug 1396442 - Use longer duration and fill:forwards to keep the animations running on the compositor. r?boris MozReview-Commit-ID: Dpfi00TmHGu
layout/reftests/invalidation/clipped-animated-transform-1.html
--- a/layout/reftests/invalidation/clipped-animated-transform-1.html
+++ b/layout/reftests/invalidation/clipped-animated-transform-1.html
@@ -21,17 +21,17 @@ body {
 #animatedTransform {
   border: 1px solid blue;
   width: 100px;
   height: 100px;
   position: absolute;
   z-index: 1;
   top: 50px;
   left: 50px;
-  transition: transform ease-in-out .4s;
+  transition: transform ease-in-out 100s forwards;
 }
 
 #clip:hover > #animatedTransform,
 #animatedTransform.animate {
   transform: translateX(200px);
 }
 
 #aboveTransform {