OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <style type="text/css"> |
| 3 .container { |
| 4 font-size: 20px; |
| 5 line-height: 1; |
| 6 } |
| 7 |
| 8 @font-face { |
| 9 font-family : 'testFont'; |
| 10 src : url('../../resources/opensans/OpenSans-Regular.woff') format("woff"); |
| 11 } |
| 12 |
| 13 .target { |
| 14 display: inline-block; |
| 15 font-family: testFont; |
| 16 } |
| 17 |
| 18 .replica { |
| 19 color: green; |
| 20 margin-right: 30px; |
| 21 } |
| 22 </style> |
| 23 |
| 24 <template id="target-template"> |
| 25 <span class="container"> |
| 26 <div class="target">x</span> |
| 27 </div> |
| 28 </template> |
| 29 <script src="resources/interpolation-test.js"></script> |
| 30 <script> |
| 31 assertInterpolation({ |
| 32 property: 'font-size-adjust', |
| 33 from: '0', |
| 34 to: '1.2' |
| 35 }, [ |
| 36 {at: -2, is: 'none'}, |
| 37 {at: -0.3, is: 'none'}, |
| 38 {at: 0, is: 'none'}, |
| 39 {at: 0.3, is: 'none'}, |
| 40 {at: 0.6, is: '1.2'}, |
| 41 {at: 1, is: '1.2'}, |
| 42 {at: 1.5, is: '1.2'}, |
| 43 ]); |
| 44 |
| 45 assertInterpolation({ |
| 46 property: 'font-size-adjust', |
| 47 from: 'none', |
| 48 to: '1.2' |
| 49 }, [ |
| 50 {at: -2, is: 'none'}, |
| 51 {at: -0.3, is: 'none'}, |
| 52 {at: 0, is: 'none'}, |
| 53 {at: 0.3, is: 'none'}, |
| 54 {at: 0.6, is: '1.2'}, |
| 55 {at: 1, is: '1.2'}, |
| 56 {at: 1.5, is: '1.2'}, |
| 57 ]); |
| 58 |
| 59 assertInterpolation({ |
| 60 property: 'font-size-adjust', |
| 61 from: '0.2', |
| 62 to: '1.2' |
| 63 }, [ |
| 64 {at: -2, is: 'none'}, // CSS font-size-adjust can't be negative. |
| 65 {at: -0.3, is: 'none'}, |
| 66 {at: 0, is: '0.2'}, |
| 67 {at: 0.3, is: '0.5'}, |
| 68 {at: 0.6, is: '0.8'}, |
| 69 {at: 1, is: '1.2'}, |
| 70 {at: 1.5, is: '1.7'}, |
| 71 ]); |
| 72 </script> |
OLD | NEW |