Index: LayoutTests/animations/composition/left-composition.html |
diff --git a/LayoutTests/animations/composition/left-composition.html b/LayoutTests/animations/composition/left-composition.html |
index 68dd0316f743d7a93a84b6bf7309cd17eb24b8a4..87a8729fdd450bd426bbcd46c8bc64881d1ca224 100644 |
--- a/LayoutTests/animations/composition/left-composition.html |
+++ b/LayoutTests/animations/composition/left-composition.html |
@@ -44,6 +44,19 @@ assertComposition({ |
assertComposition({ |
property: 'left', |
+ underlying: '10%', |
+ addFrom: '100px', |
+ addTo: '-10%', |
+}, [ |
+ {at: -0.3, is: 'calc(130px + 13%)'}, |
+ {at: 0, is: 'calc(100px + 10%)'}, |
+ {at: 0.5, is: 'calc(50px + 5%)'}, |
+ {at: 1, is: '0%'}, |
+ {at: 1.5, is: 'calc(-50px - 5%)'}, |
+]); |
+ |
+assertComposition({ |
+ property: 'left', |
underlying: '50px', |
addFrom: '100px', |
replaceTo: '200px', |