summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-transforms/animation/transform-interpolation-004.html
blob: a6b3c75c623f0e11c31f0452ba3520e4dc442958 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<!DOCTYPE html>
<meta charset="UTF-8">
<title>transform interpolation</title>
<link rel="help" href="https://drafts.csswg.org/css-transforms/#transform-property">
<meta name="assert" content="transform supports animation as a transform list">

<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/interpolation-testcommon.js"></script>

<style>
.target {
  color: white;
  width: 100px;
  height: 100px;
  background-color: black;
  display: inline-block;
  overflow: hidden;
}
.expected {
  background-color: green;
}
.target > div {
  width: 10px;
  height: 10px;
  display: inline-block;
  background: orange;
  margin: 1px;
}
.test {
  overflow: hidden;
}
</style>

<body>
  <template id="target-template">
    <div></div>
  </template>
</body>

<script>
// Translate
test_interpolation({
  property: 'transform',
  from: 'translate(12px, 70%)',
  to: 'translate(13px, 90%)'
}, [
  {at: -1, expect: 'translate(11px, 50%)'},
  {at: 0, expect: 'translate(12px, 70%)'},
  {at: 0.25, expect: 'translate(12.25px, 75%)'},
  {at: 0.75, expect: 'translate(12.75px, 85%)'},
  {at: 1, expect: 'translate(13px, 90%)'},
  {at: 2, expect: 'translate(14px, 110%)'},
]);
test_interpolation({
  property: 'transform',
  from: 'translateX(12px)',
  to: 'translateX(13px)'
}, [
  {at: -1, expect: 'translateX(11px)'},
  {at: 0, expect: 'translateX(12px)'},
  {at: 0.25, expect: 'translateX(12.25px)'},
  {at: 0.75, expect: 'translateX(12.75px)'},
  {at: 1, expect: 'translateX(13px)'},
  {at: 2, expect: 'translateX(14px)'},
]);
test_interpolation({
  property: 'transform',
  from: 'translateY(70%)',
  to: 'translateY(90%)'
}, [
  {at: -1, expect: 'translateY(50%)'},
  {at: 0, expect: 'translateY(70%)'},
  {at: 0.25, expect: 'translateY(75%)'},
  {at: 0.75, expect: 'translateY(85%)'},
  {at: 1, expect: 'translateY(90%)'},
  {at: 2, expect: 'translateY(110%)'},
]);
test_interpolation({
  property: 'transform',
  from: 'translateZ(2em)',
  to: 'translateZ(3em)'
}, [
  {at: -1, expect: 'translateZ(1em)'},
  {at: 0, expect: 'translateZ(2em)'},
  {at: 0.25, expect: 'translateZ(2.25em)'},
  {at: 0.75, expect: 'translateZ(2.75em)'},
  {at: 1, expect: 'translateZ(3em)'},
  {at: 2, expect: 'translateZ(4em)'},
]);
test_interpolation({
  property: 'transform',
  from: 'translate3d(12px, 70%, 2em)',
  to: 'translate3d(13px, 90%, 3em)'
}, [
  {at: -1, expect: 'translate3d(11px, 50%, 1em)'},
  {at: 0, expect: 'translate3d(12px, 70%, 2em)'},
  {at: 0.25, expect: 'translate3d(12.25px, 75%, 2.25em)'},
  {at: 0.75, expect: 'translate3d(12.75px, 85%, 2.75em)'},
  {at: 1, expect: 'translate3d(13px, 90%, 3em)'},
  {at: 2, expect: 'translate3d(14px, 110%, 4em)'},
]);
test_interpolation({
  property: 'transform',
  from: 'translateX(12px) translateY(70%) translateZ(2em)',
  to: 'translateX(13px) translateY(90%) translateZ(3em)'
}, [
  {at: -1, expect: 'translateX(11px) translateY(50%) translateZ(1em)'},
  {at: 0, expect: 'translateX(12px) translateY(70%) translateZ(2em)'},
  {at: 0.25, expect: 'translateX(12.25px) translateY(75%) translateZ(2.25em)'},
  {at: 0.75, expect: 'translateX(12.75px) translateY(85%) translateZ(2.75em)'},
  {at: 1, expect: 'translateX(13px) translateY(90%) translateZ(3em)'},
  {at: 2, expect: 'translateX(14px) translateY(110%) translateZ(4em)'},
]);
test_interpolation({
  property: 'transform',
  from: 'skewX(10rad) translateY(70%)',
  to: 'skewX(20rad) translateY(90%)'
}, [
  {at: -1, expect: 'skewX(0rad) translateY(50%)'},
  {at: 0, expect: 'skewX(10rad) translateY(70%)'},
  {at: 0.25, expect: 'skewX(12.5rad) translateY(75%)'},
  {at: 0.75, expect: 'skewX(17.5rad) translateY(85%)'},
  {at: 1, expect: 'skewX(20rad) translateY(90%)'},
  {at: 2, expect: 'skewX(30rad) translateY(110%)'},
]);
test_interpolation({
  property: 'transform',
  from: 'skewX(1rad)',
  to: 'translate3d(8px, -4px, 12px) skewX(2rad)'
}, [
  {at: -1, expect: 'matrix3d(1, 0, 0, 0, 5.2998553125713235, 1, 0, 0, 0, 0, 1, 0, -8, 4, -12, 1)'},
  {at: 0, expect: 'matrix(1, 0, 1.5574077246549023, 1, 0, 0)'},
  {at: 0.25, expect: 'matrix3d(1, 0, 0, 0, 0.621795827675797, 1, 0, 0, 0, 0, 1, 0, 2, -1, 3, 1)'},
  {at: 0.75, expect: 'matrix3d(1, 0, 0, 0, -1.2494279662824135, 1, 0, 0, 0, 0, 1, 0, 6, -3, 9, 1)'},
  {at: 1, expect: 'matrix3d(1, 0, 0, 0, -2.185039863261519, 1, 0, 0, 0, 0, 1, 0, 8, -4, 12, 1)'},
  {at: 2, expect: 'matrix3d(1, 0, 0, 0, -5.9274874511779405, 1, 0, 0, 0, 0, 1, 0, 16, -8, 24, 1)'},
]);
test_interpolation({
  property: 'transform',
  from: 'translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)',
  to: 'scaleY(2) skewX(2rad) perspective(500px)'
}, [
  {at: -1, expect: 'matrix3d(1, 0, 0, 0, 0, 0, 0, 0, -0.03876288659793814, 0.01938144329896907, 0.94, -0.0029653608247422686, 16, -8, 24, 0.986144329896907)'},
  {at: 0, expect: 'matrix3d(1, 0, 0, 0, 1.5574077246549023, 1, 0, 0, -0.02, 0.01, 0.97, -0.0025, 8, -4, 12, 1)'},
  {at: 0.25, expect: 'matrix3d(1, 0, 0, 0, 1.1186572632293585, 1.25, 0, 0, -0.0151159793814433, 0.00755798969072165, 0.9775, -0.002378247422680413, 6, -3, 9, 1.0012989690721648)'},
  {at: 0.75, expect: 'matrix3d(1, 0, 0, 0, -0.7525665307288518, 1.75, 0, 0, -0.005115979381443298, 0.002557989690721649, 0.9924999999999999, -0.002128247422680412, 2, -1, 3, 1.001298969072165)'},
  {at: 1, expect: 'matrix3d(1, 0, 0, 0, -2.185039863261519, 2, 0, 0, 0, 0, 1, -0.002, 0, 0, 0, 1)'},
  {at: 2, expect: 'matrix3d(1, 0, 0, 0, -11.227342763749263, 3, 0, 0, 0.021237113402061854, -0.010618556701030927, 1.03, -0.0014653608247422677, -8, 4, -12, 0.9861443298969074)'},
]);
test_interpolation({
  property: 'transform',
  from: 'translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)',
  to: 'translate3d(4px, -12px, 8px) scaleY(2) perspective(500px)'
}, [
  {at: -1, expect: 'translate3d(12px, 4px, 16px) matrix3d(1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -0.003, 0, 0, 0, 1)'},
  {at: 0, expect: 'translate3d(8px, -4px, 12px) matrix3d(1, 0, 0, 0, 1.55741, 1, 0, 0, 0, 0, 1, -0.0025, 0, 0, 0, 1)'},
  {at: 0.25, expect: 'translate3d(7px, -6px, 11px) matrix3d(1, 0, 0, 0, 1.46007, 1.25, 0, 0, 0, 0, 1, -0.002375, 0, 0, 0, 1)'},
  {at: 0.75, expect: 'translate3d(5px, -10px, 9px) matrix3d(1, 0, 0, 0, 0.681366, 1.75, 0, 0, 0, 0, 1, -0.002125, 0, 0, 0, 1)'},
  {at: 1, expect: 'translate3d(4px, -12px, 8px) matrix3d(1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, -0.002, 0, 0, 0, 1)'},
  {at: 2, expect: 'translate3d(0px, -20px, 4px) matrix3d(1, 0, 0, 0, -4.67222, 3, 0, 0, 0, 0, 1, -0.0015, 0, 0, 0, 1)'},
]);
test_interpolation({
  property: 'transform',
  from: 'translate3d(8px, -4px, 12px) skewX(1rad) perspective(400px)',
  to: 'translate3d(4px, -12px, 8px) skewX(2rad) scaleY(2)'
}, [
  {at: -1, expect: 'translate3d(12px, 4px, 16px) skewX(0rad) matrix3d(1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -0.005, 0, 0, 0, 1)'},
  {at: 0, expect: 'translate3d(8px, -4px, 12px) skewX(1rad) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, -0.0025, 0, 0, 0, 1)'},
  {at: 0.25, expect: 'translate3d(7px, -6px, 11px) skewX(1.25rad) matrix3d(1, 0, 0, 0, 0, 1.25, 0, 0, 0, 0, 1, -0.001875, 0, 0, 0, 1)'},
  {at: 0.75, expect: 'translate3d(5px, -10px, 9px) skewX(1.75rad) matrix3d(1, 0, 0, 0, 0, 1.75, 0, 0, 0, 0, 1, -0.000625, 0, 0, 0, 1)'},
  {at: 1, expect: 'translate3d(4px, -12px, 8px) skewX(2rad) matrix(1, 0, 0, 2, 0, 0)'},
  {at: 2, expect: 'translate3d(0px, -20px, 4px) skewX(3rad) matrix3d(1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0.0025, 0, 0, 0, 1)'},
]);
test_interpolation({
  property: 'transform',
  from: 'translate3D(100px, 200px, 300px)',
  to: 'none'
}, [
  {at: -1, expect: 'matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 200, 400, 600, 1)'},
  {at: 0, expect: 'matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 100, 200, 300, 1)'},
  {at: 0.25, expect: 'matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 75, 150, 225, 1)'},
  {at: 0.75, expect: 'matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 25, 50, 75, 1)'},
  {at: 1, expect: 'matrix(1, 0, 0, 1, 0, 0) '},
  {at: 2, expect: 'matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -100, -200, -300, 1)'},
]);
</script>