| Index: LayoutTests/animations/interpolation/flex-interpolation.html
|
| diff --git a/LayoutTests/animations/interpolation/flex-interpolation.html b/LayoutTests/animations/interpolation/flex-interpolation.html
|
| index 58d3c578618aaad46855e3809c2a6417cdbbe073..a624a3a1754f35c7d369fe72510da05c58dad947 100644
|
| --- a/LayoutTests/animations/interpolation/flex-interpolation.html
|
| +++ b/LayoutTests/animations/interpolation/flex-interpolation.html
|
| @@ -50,5 +50,29 @@ assertInterpolation({
|
| {at: 1, is: '1 1 100%'},
|
| {at: 1.5, is: '1 1 100%'}
|
| ]);
|
| +assertInterpolation({
|
| + property: 'flex-shrink',
|
| + from: '0',
|
| + to: '1'
|
| +}, [
|
| + {at: -0.3, is: '0'},
|
| + {at: 0, is: '0'},
|
| + {at: 0.4, is: '0.4'},
|
| + {at: 0.6, is: '0.6'},
|
| + {at: 1, is: '1'},
|
| + {at: 1.5, is: '1.5'}
|
| +]);
|
| +assertInterpolation({
|
| + property: 'flex-grow',
|
| + from: '0',
|
| + to: '1'
|
| +}, [
|
| + {at: -0.3, is: '0'},
|
| + {at: 0, is: '0'},
|
| + {at: 0.4, is: '0.4'},
|
| + {at: 0.6, is: '0.6'},
|
| + {at: 1, is: '1'},
|
| + {at: 1.5, is: '1.5'}
|
| +]);
|
| </script>
|
| </body>
|
|
|