| Index: LayoutTests/animations/interpolation/background-position-interpolation.html
|
| diff --git a/LayoutTests/animations/interpolation/background-position-interpolation.html b/LayoutTests/animations/interpolation/background-position-interpolation.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..d6cf48b64f4c82684aeee4db3fedd7e6953f0d5e
|
| --- /dev/null
|
| +++ b/LayoutTests/animations/interpolation/background-position-interpolation.html
|
| @@ -0,0 +1,67 @@
|
| +<!DOCTYPE html>
|
| +<meta charset="UTF-8">
|
| +<style>
|
| +.target {
|
| + width: 120px;
|
| + height: 120px;
|
| + display: inline-block;
|
| + border: 2px solid black;
|
| + background-repeat: no-repeat;
|
| + background-image: radial-gradient(20px circle at 20px 20px, red 18px, transparent),
|
| + radial-gradient(20px circle at 20px 20px, yellow 18px, transparent),
|
| + radial-gradient(20px circle at 20px 20px, lime 18px, transparent),
|
| + radial-gradient(20px circle at 20px 20px, blue 18px, transparent);
|
| +}
|
| +.replica {
|
| + margin-right: 10px;
|
| +}
|
| +</style>
|
| +<body>
|
| +<script src="resources/interpolation-test.js"></script>
|
| +<script>
|
| +// Test equal number of position values as background images.
|
| +assertInterpolation({
|
| + property: 'background-position',
|
| + from: '0px 0px, 0px 0px, 0px 0px, 0px 0px',
|
| + to: '80px 80px, 80px 80px, 80px 80px, 80px 80px',
|
| +}, [
|
| + {at: -0.25, is: '-20px -20px, -20px -20px, -20px -20px, -20px -20px'},
|
| + {at: 0, is: ' 0px 0px, 0px 0px, 0px 0px, 0px 0px'},
|
| + {at: 0.25, is: ' 20px 20px, 20px 20px, 20px 20px, 20px 20px'},
|
| + {at: 0.5, is: ' 40px 40px, 40px 40px, 40px 40px, 40px 40px'},
|
| + {at: 0.75, is: ' 60px 60px, 60px 60px, 60px 60px, 60px 60px'},
|
| + {at: 1, is: ' 80px 80px, 80px 80px, 80px 80px, 80px 80px'},
|
| + {at: 1.25, is: '100px 100px, 100px 100px, 100px 100px, 100px 100px'},
|
| +]);
|
| +
|
| +// Test single position value repeated over background images.
|
| +assertInterpolation({
|
| + property: 'background-position',
|
| + from: 'top 0px left 0px',
|
| + to: 'left 80px top 80px',
|
| +}, [
|
| + {at: -0.25, is: '-20px -20px, -20px -20px, -20px -20px, -20px -20px'},
|
| + {at: 0, is: ' 0px 0px, 0px 0px, 0px 0px, 0px 0px'},
|
| + {at: 0.25, is: ' 20px 20px, 20px 20px, 20px 20px, 20px 20px'},
|
| + {at: 0.5, is: ' 40px 40px, 40px 40px, 40px 40px, 40px 40px'},
|
| + {at: 0.75, is: ' 60px 60px, 60px 60px, 60px 60px, 60px 60px'},
|
| + {at: 1, is: ' 80px 80px, 80px 80px, 80px 80px, 80px 80px'},
|
| + {at: 1.25, is: '100px 100px, 100px 100px, 100px 100px, 100px 100px'},
|
| +]);
|
| +
|
| +// Test mismatched numbers of position values.
|
| +assertInterpolation({
|
| + property: 'background-position',
|
| + from: '0px 0px, 80px 0px',
|
| + to: '40px 40px, 80px 80px, 0px 80px',
|
| +}, [
|
| + {at: -0.25, is: '-10px -10px, 80px -20px, 0px -20px, 90px -10px'},
|
| + {at: 0, is: ' 0px 0px, 80px 0px, 0px 0px, 80px 0px'},
|
| + {at: 0.25, is: ' 10px 10px, 80px 20px, 0px 20px, 70px 10px'},
|
| + {at: 0.5, is: ' 20px 20px, 80px 40px, 0px 40px, 60px 20px'},
|
| + {at: 0.75, is: ' 30px 30px, 80px 60px, 0px 60px, 50px 30px'},
|
| + {at: 1, is: ' 40px 40px, 80px 80px, 0px 80px, 40px 40px'},
|
| + {at: 1.25, is: ' 50px 50px, 80px 100px, 0px 100px, 30px 50px'},
|
| +]);
|
| +</script>
|
| +</body>
|
|
|