| Index: LayoutTests/animations/interpolation/display-interpolation.html
|
| diff --git a/LayoutTests/animations/interpolation/display-interpolation.html b/LayoutTests/animations/interpolation/display-interpolation.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..7247e3bb14ca54b0a636847228a625d64e31dfb7
|
| --- /dev/null
|
| +++ b/LayoutTests/animations/interpolation/display-interpolation.html
|
| @@ -0,0 +1,31 @@
|
| +<!DOCTYPE html>
|
| +<meta charset="UTF-8">
|
| +<style>
|
| +.target {
|
| + display: block;
|
| +}
|
| +</style>
|
| +<body>
|
| +<script src="resources/interpolation-test.js"></script>
|
| +<script>
|
| +assertInterpolation({
|
| + property: 'display',
|
| + from: 'none',
|
| + to: 'flex',
|
| + method: 'CSS Animations',
|
| +}, [
|
| + {at: -0.3, is: 'block'},
|
| + {at: 0, is: 'block'},
|
| + {at: 0.3, is: 'block'},
|
| + {at: 0.6, is: 'block'},
|
| + {at: 1, is: 'block'},
|
| + {at: 1.5, is: 'block'},
|
| +]);
|
| +assertNoInterpolation({
|
| + property: 'display',
|
| + from: 'none',
|
| + to: 'flex',
|
| + method: 'Web Animations',
|
| +});
|
| +</script>
|
| +</body>
|
|
|