OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <meta charset="UTF-8"> | 2 <meta charset="UTF-8"> |
3 <style> | 3 <style> |
| 4 .parent { |
| 5 min-height: 30px; |
| 6 } |
4 .target { | 7 .target { |
5 width: 100px; | 8 width: 10px; |
6 height: 0px; | 9 height: 0px; |
7 background-color: black; | 10 background-color: black; |
8 display: inline-block; | 11 display: inline-block; |
| 12 min-height: 10px; |
9 } | 13 } |
10 .expected { | 14 .expected { |
11 background-color: green; | 15 background-color: green; |
12 } | 16 } |
13 </style> | 17 </style> |
14 <body> | 18 <body> |
15 <script src="resources/interpolation-test.js"></script> | 19 <script src="resources/interpolation-test.js"></script> |
16 <script> | 20 <script> |
17 assertInterpolation({ | 21 assertInterpolation({ |
18 property: 'min-height', | 22 property: 'min-height', |
| 23 from: '', |
| 24 to: '20px', |
| 25 }, [ |
| 26 {at: -0.5, is: '5px'}, |
| 27 {at: 0, is: '10px'}, |
| 28 {at: 0.3, is: '13px'}, |
| 29 {at: 0.6, is: '16px'}, |
| 30 {at: 1, is: '20px'}, |
| 31 {at: 1.5, is: '25px'}, |
| 32 ]); |
| 33 |
| 34 assertNoInterpolation({ |
| 35 property: 'min-height', |
| 36 from: 'initial', |
| 37 to: '20px', |
| 38 }); |
| 39 |
| 40 assertInterpolation({ |
| 41 property: 'min-height', |
| 42 from: 'inherit', |
| 43 to: '20px', |
| 44 }, [ |
| 45 {at: -0.5, is: '35px'}, |
| 46 {at: 0, is: '30px'}, |
| 47 {at: 0.3, is: '27px'}, |
| 48 {at: 0.6, is: '24px'}, |
| 49 {at: 1, is: '20px'}, |
| 50 {at: 1.5, is: '15px'}, |
| 51 ]); |
| 52 |
| 53 assertNoInterpolation({ |
| 54 property: 'min-height', |
| 55 from: 'unset', |
| 56 to: '20px', |
| 57 }); |
| 58 |
| 59 |
| 60 assertInterpolation({ |
| 61 property: 'min-height', |
19 from: '0px', | 62 from: '0px', |
20 to: '100px' | 63 to: '100px', |
21 }, [ | 64 }, [ |
22 {at: -0.5, is: '0'}, // CSS min-height can't be negative. | 65 {at: -0.5, is: '0'}, // CSS min-height can't be negative. |
23 {at: 0, is: '0'}, | 66 {at: 0, is: '0'}, |
24 {at: 0.3, is: '30px'}, | 67 {at: 0.3, is: '30px'}, |
25 {at: 0.6, is: '60px'}, | 68 {at: 0.6, is: '60px'}, |
26 {at: 1, is: '100px'}, | 69 {at: 1, is: '100px'}, |
27 {at: 1.5, is: '150px'} | 70 {at: 1.5, is: '150px'} |
28 ]); | 71 ]); |
29 </script> | 72 </script> |
30 </body> | 73 </body> |
OLD | NEW |