| Index: LayoutTests/animations/interpolation/opacity-interpolation.html
|
| diff --git a/LayoutTests/animations/interpolation/opacity-interpolation.html b/LayoutTests/animations/interpolation/opacity-interpolation.html
|
| index cf619eb1cd245fbd4de56f5428fb33c9eabddffe..ff51c1408e98fc9992cde2f4b50c1355eb98f47c 100644
|
| --- a/LayoutTests/animations/interpolation/opacity-interpolation.html
|
| +++ b/LayoutTests/animations/interpolation/opacity-interpolation.html
|
| @@ -26,5 +26,18 @@ assertInterpolation({
|
| {at: 1, is: '1'},
|
| {at: 1.5, is: '1'}
|
| ]);
|
| +assertInterpolation({
|
| + property: 'opacity',
|
| + from: '-2',
|
| + to: '-4'
|
| +}, [
|
| + {at: -1.25, is: '0.5'},
|
| + {at: -0.3, is: '0'}, // CSS opacity is [0-1].
|
| + {at: 0, is: '0'},
|
| + {at: 0.3, is: '0'},
|
| + {at: 0.6, is: '0'},
|
| + {at: 1, is: '0'},
|
| + {at: 1.5, is: '0'}
|
| +]);
|
| </script>
|
| </body>
|
|
|