Index: LayoutTests/animations/interpolation/object-position-interpolation.html |
diff --git a/LayoutTests/animations/interpolation/object-position-interpolation.html b/LayoutTests/animations/interpolation/object-position-interpolation.html |
index 2b55a161c1cd553a8e0c7113df0205fa751aac15..2c700bf3238eb28cbed8b9de5f26387e335138b6 100644 |
--- a/LayoutTests/animations/interpolation/object-position-interpolation.html |
+++ b/LayoutTests/animations/interpolation/object-position-interpolation.html |
@@ -129,5 +129,20 @@ assertInterpolation({ |
{at: 1, is: '100% 0%'}, |
{at: 1.5, is: '125% -25%'} |
]); |
+ |
+assertInterpolation({ |
+ property: 'object-position', |
+ from: 'center', |
+ to: 'right bottom 100%', |
+}, [ |
+ {at: -0.5, is: '25% 75%'}, |
+ {at: 0, is: 'center'}, |
+ {at: 0.3, is: '65% 35%'}, |
+ {at: 0.5, is: '75% 25%'}, |
+ {at: 0.9, is: '95% 5%'}, |
+ {at: 1, is: 'right bottom 100%'}, |
+ {at: 1.5, is: '125% -25%'}, |
+ {at: 2, is: '150% -50%'}, |
+]); |
</script> |
</body> |