| Index: third_party/WebKit/LayoutTests/animations/interpolation/webkit-mask-size-interpolation.html
|
| diff --git a/third_party/WebKit/LayoutTests/animations/interpolation/webkit-mask-size-interpolation.html b/third_party/WebKit/LayoutTests/animations/interpolation/webkit-mask-size-interpolation.html
|
| index 839a90903d1e96e4c581bfa21dc4da6770b216ab..bc31d9b3fc99607f7f58453b252cd870bf1be58d 100644
|
| --- a/third_party/WebKit/LayoutTests/animations/interpolation/webkit-mask-size-interpolation.html
|
| +++ b/third_party/WebKit/LayoutTests/animations/interpolation/webkit-mask-size-interpolation.html
|
| @@ -67,11 +67,19 @@ assertNoInterpolation({
|
| });
|
|
|
| // Matched keywords in size value list.
|
| -assertNoInterpolation({
|
| +assertInterpolation({
|
| property: '-webkit-mask-size',
|
| from: '0px 0px, 0px 0px, contain, cover',
|
| - to: '20px 20px, 20px 20px, contain, cover',
|
| -});
|
| + to: '40px 40px, 40px 40px, contain, cover',
|
| +}, [
|
| + {at: -0.25, is: ' 0px 0px, 0px 0px, contain, cover'},
|
| + {at: 0, is: ' 0px 0px, 0px 0px, contain, cover'},
|
| + {at: 0.25, is: '10px 10px, 10px 10px, contain, cover'},
|
| + {at: 0.5, is: '20px 20px, 20px 20px, contain, cover'},
|
| + {at: 0.75, is: '30px 30px, 30px 30px, contain, cover'},
|
| + {at: 1, is: '40px 40px, 40px 40px, contain, cover'},
|
| + {at: 1.25, is: '50px 50px, 50px 50px, contain, cover'},
|
| +]);
|
|
|
| // Mismatched keywords in size value list.
|
| assertNoInterpolation({
|
|
|