Index: LayoutTests/animations/interpolation/outline-width-interpolation.html |
diff --git a/LayoutTests/animations/interpolation/outline-width-interpolation.html b/LayoutTests/animations/interpolation/outline-width-interpolation.html |
index 4338e57eabc8df5579021aeb81010a12a3225e6a..cbe309d0ae132240f286338c5731647cb82a9edb 100644 |
--- a/LayoutTests/animations/interpolation/outline-width-interpolation.html |
+++ b/LayoutTests/animations/interpolation/outline-width-interpolation.html |
@@ -28,5 +28,18 @@ assertInterpolation({ |
{at: 1, is: '10px'}, |
{at: 1.5, is: '15px'} |
]); |
+assertInterpolation({ |
+ property: 'outline-width', |
+ from: 'thick', |
+ to: '15px' |
+}, [ |
+ {at: -2, is: '0px'}, // CSS outline-width can't be negative. |
+ {at: -0.3, is: '2px'}, |
+ {at: 0, is: '5px'}, |
+ {at: 0.3, is: '8px'}, |
+ {at: 0.6, is: '11px'}, |
+ {at: 1, is: '15px'}, |
+ {at: 1.5, is: '20px'} |
+]); |
</script> |
</body> |