Index: LayoutTests/animations/interpolation/svg-stroke-dashoffset-interpolation.html |
diff --git a/LayoutTests/animations/interpolation/svg-stroke-dashoffset-interpolation.html b/LayoutTests/animations/interpolation/svg-stroke-dashoffset-interpolation.html |
index 7e4dbbbe1c2f8597b0f8a7b35857518cce06b258..751ebbd53d0bbab3f11a687e9c60259b230acde0 100644 |
--- a/LayoutTests/animations/interpolation/svg-stroke-dashoffset-interpolation.html |
+++ b/LayoutTests/animations/interpolation/svg-stroke-dashoffset-interpolation.html |
@@ -60,5 +60,18 @@ assertInterpolation({ |
{at: 1, is: '140px'}, |
{at: 1.25, is: '150px'}, |
]); |
+assertInterpolation({ |
+ property: 'stroke-dashoffset', |
+ from: '-10', |
+ to: '10' |
+}, [ |
+ {at: -0.25, is: '-15'}, |
+ {at: 0, is: '-10'}, |
+ {at: 0.25, is: '-5'}, |
+ {at: 0.5, is: '0'}, |
+ {at: 0.75, is: '5'}, |
+ {at: 1, is: '10'}, |
+ {at: 1.25, is: '15'}, |
+]); |
</script> |
</body> |