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
|
<!DOCTYPE html>
<body>
<script src="resources/interpolation-test.js"></script>
<script>
assertInterpolation({
property: 'visibility',
from: 'visible',
to: 'visible'
}, [
{at: -1, is: 'visible'},
{at: 0, is: 'visible'},
{at: 0.5, is: 'visible'},
{at: 1, is: 'visible'},
{at: 1.5, is: 'visible'},
]);
assertInterpolation({
property: 'visibility',
from: 'visible',
to: 'hidden'
}, [
{at: -1, is: 'visible'},
{at: 0, is: 'visible'},
{at: 0.1, is: 'visible'},
{at: 0.9, is: 'visible'},
{at: 1, is: 'hidden'},
{at: 1.5, is: 'hidden'},
]);
assertInterpolation({
property: 'visibility',
from: 'collapse',
to: 'visible'
}, [
{at: -1, is: 'collapse'},
{at: 0, is: 'collapse'},
{at: 0.1, is: 'visible'},
{at: 0.9, is: 'visible'},
{at: 1, is: 'visible'},
{at: 1.5, is: 'visible'},
]);
assertNoInterpolation({
property: 'visibility',
from: 'collapse',
to: 'hidden'
});
</script>
</body>
|