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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
|
<!DOCTYPE html>
<meta charset="UTF-8">
<link rel="help" href="https://drafts.csswg.org/css-backgrounds-3/#background-image">
<meta name="test" content="background-image supports animation">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/interpolation-testcommon.js"></script>
<style>
.parent {
background-image: url(../resources/blue-100.png);
background-size: 0 0;
}
.target {
width: 100px;
height: 100px;
display: inline-block;
border: 10px solid black;
background-repeat: no-repeat;
background-image: url(../resources/blue-100.png);
}
.expected {
border-color: green;
margin-right: 2px;
}
</style>
<body>
<script>
// Neutral to image
var from = 'url(../resources/blue-100.png)';
var to = 'url(../resources/green-100.png)';
test_interpolation({
property: 'background-image',
from: neutralKeyframe,
to: to,
}, [
{at: -0.3, expect: from},
{at: 0, expect: from},
{at: 0.3, expect: from},
{at: 0.6, expect: to},
{at: 1, expect: to},
{at: 1.5, expect: to},
]);
// initial to image
to = 'url(../resources/green-100.png)';
test_interpolation({
property: 'background-image',
from: 'initial',
to: to,
}, [
{at: -0.3, expect: 'none'},
{at: 0, expect: 'none'},
{at: 0.3, expect: 'none'},
{at: 0.6, expect: to},
{at: 1, expect: to},
{at: 1.5, expect: to},
]);
// inherit to image
from = 'url(../resources/blue-100.png)';
to = 'url(../resources/green-100.png)';
test_interpolation({
property: 'background-image',
from: 'inherit',
to: to,
}, [
{at: -0.3, expect: from},
{at: 0, expect: from},
{at: 0.3, expect: from},
{at: 0.6, expect: to},
{at: 1, expect: to},
{at: 1.5, expect: to},
]);
// unset to image
test_interpolation({
property: 'background-image',
from: 'unset',
to: to,
}, [
{at: -0.3, expect: 'none'},
{at: 0, expect: 'none'},
{at: 0.3, expect: 'none'},
{at: 0.6, expect: to},
{at: 1, expect: to},
{at: 1.5, expect: to},
]);
// Image to image
from = 'url(../resources/blue-100.png)';
to = 'url(../resources/green-100.png)';
test_interpolation({
property: 'background-image',
from: from,
to: to,
}, [
{at: -0.3, expect: from},
{at: 0, expect: from},
{at: 0.3, expect: from},
{at: 0.6, expect: to},
{at: 1, expect: to},
{at: 1.5, expect: to},
]);
// Image to gradient
from = 'url(../resources/blue-100.png)';
to = 'linear-gradient(45deg, blue, orange)';
test_interpolation({
property: 'background-image',
from: from,
to: to,
}, [
{at: -0.3, expect: from},
{at: 0, expect: from},
{at: 0.3, expect: from},
{at: 0.6, expect: to},
{at: 1, expect: to},
{at: 1.5, expect: to},
]);
// Image to crossfade
from = 'url(../resources/blue-100.png)';
to = 'cross-fade(url(../resources/green-100.png), url(../resources/stripes-100.png), 0.5)';
test_interpolation({
property: 'background-image',
from: from,
to: to,
}, [
{at: -0.3, expect: from},
{at: 0, expect: from},
{at: 0.3, expect: from},
{at: 0.6, expect: to},
{at: 1, expect: to},
{at: 1.5, expect: to},
]);
// Gradient to gradient
from = 'linear-gradient(-45deg, red, yellow)';
to = 'linear-gradient(45deg, blue, orange)';
test_interpolation({
property: 'background-image',
from: from,
to: to,
}, [
{at: -0.3, expect: from},
{at: 0, expect: from},
{at: 0.3, expect: from},
{at: 0.6, expect: to},
{at: 1, expect: to},
{at: 1.5, expect: to},
]);
// Keyword to image
from = 'none';
to = 'url(../resources/green-100.png)';
test_interpolation({
property: 'background-image',
from: from,
to: to,
}, [
{at: -0.3, expect: from},
{at: 0, expect: from},
{at: 0.3, expect: from},
{at: 0.6, expect: to},
{at: 1, expect: to},
{at: 1.5, expect: to},
]);
// Multiple to multiple
var fromA = 'url(../resources/stripes-100.png)';
var fromB = 'url(../resources/blue-100.png)';
var toA = 'url(../resources/blue-100.png)';
var toB = 'url(../resources/stripes-100.png)';
from = fromA + ', ' + fromB;
to = toA + ', ' + toB;
test_interpolation({
property: 'background-image',
from: from,
to: to,
}, [
{at: -0.3, expect: from},
{at: 0, expect: from},
{at: 0.3, expect: from},
{at: 0.6, expect: to},
{at: 1, expect: to},
{at: 1.5, expect: to},
]);
// Single to multiple
from = 'url(../resources/blue-100.png)';
var toA = 'url(../resources/stripes-100.png)';
var toB = 'url(../resources/green-100.png)';
to = toA + ', ' + toB;
test_interpolation({
property: 'background-image',
from: from,
to: to,
}, [
// The interpolation of different numbers of background-images looks a bit strange here.
// Animating background-image is not specified to be possible however we do it for backwards compatibility.
// With this in mind we kept the implementation simple at the expense of this corner case because there is
// no official specification to support.
{at: -0.3, expect: from},
{at: 0, expect: from},
{at: 0.3, expect: from},
{at: 0.6, expect: to},
{at: 1, expect: to},
{at: 1.5, expect: to},
]);
// Multiple mismatched types
from = 'url(../resources/blue-100.png), none';
to = 'url(../resources/stripes-100.png), url(../resources/green-100.png)';
test_interpolation({
property: 'background-image',
from: from,
to: to,
}, [
{at: -0.3, expect: from},
{at: 0, expect: from},
{at: 0.3, expect: from},
{at: 0.6, expect: to},
{at: 1, expect: to},
{at: 1.5, expect: to},
]);
</script>
</body>
|