summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/animations/interpolation/max-width-interpolation.html
blob: 18d1f7db5b750d0e882cb0e0f3696f80523e9f87 (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
<!DOCTYPE html>
<meta charset="UTF-8">
<style>
.parent {
  max-width: 100px;
}
.target {
  width: 200px;
  height: 10px;
  background-color: black;
  max-width: 10px;
}
.expected {
  background-color: green;
  margin-bottom: 10px;
}
</style>
<body>
<script src="resources/interpolation-test.js"></script>
<script>
assertInterpolation({
  property: 'max-width',
  from: '',
  to: '20px',
}, [
  {at: -0.5, is: '5px'},
  {at: 0, is: '10px'},
  {at: 0.3, is: '13px'},
  {at: 0.6, is: '16px'},
  {at: 1, is: '20px'},
  {at: 1.5, is: '25px'},
]);

assertNoInterpolation({
  property: 'max-width',
  from: 'initial',
  to: '20px',
});

assertInterpolation({
  property: 'max-width',
  from: 'inherit',
  to: '20px',
}, [
  {at: -0.5, is: '140px'},
  {at: 0, is: '100px'},
  {at: 0.3, is: '76px'},
  {at: 0.6, is: '52px'},
  {at: 1, is: '20px'},
  {at: 1.5, is: '0px'},
]);

assertNoInterpolation({
  property: 'max-width',
  from: 'unset',
  to: '20px',
});


assertInterpolation({
  property: 'max-width',
  from: '0px',
  to: '100px',
}, [
  {at: -0.5, is: '0'}, // CSS max-width can't be negative.
  {at: 0, is: '0'},
  {at: 0.3, is: '30px'},
  {at: 0.6, is: '60px'},
  {at: 1, is: '100px'},
  {at: 1.5, is: '150px'}
]);
</script>
</body>