Chromium Code Reviews| Index: LayoutTests/animations/interpolation/shape-image-threshold.html |
| diff --git a/LayoutTests/animations/interpolation/shape-image-threshold.html b/LayoutTests/animations/interpolation/shape-image-threshold.html |
| index eee693939ecbae52cb994fd31138a02d9bca137c..9a24fca6df4e353134cfc050da3a135d0ee76dea 100644 |
| --- a/LayoutTests/animations/interpolation/shape-image-threshold.html |
| +++ b/LayoutTests/animations/interpolation/shape-image-threshold.html |
| @@ -15,5 +15,18 @@ assertInterpolation({ |
| {at: 1, is: '1'}, |
| {at: 1.5, is: '1'} |
| ]); |
| +assertInterpolation({ |
| + property: 'shape-image-threshold', |
| + from: '2', |
| + to: '4' |
| +}, [ |
| + {at: -1.5, is: '0'}, |
| + {at: -0.75, is: '0.5'}, |
| + {at: -0.5, is: '1'}, |
| + {at: 0, is: '2'}, |
| + {at: 0.5, is: '3'}, |
| + {at: 1, is: '4'}, |
| + {at: 1.5, is: '4'} |
|
alancutter (OOO until 2018)
2015/02/04 20:24:37
Why does this test pass? Your code now clamps betw
jadeg
2015/02/05 23:37:01
Im really not sure, maybe you could come and help
|
| +]); |
| </script> |
| </body> |