| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <meta charset="UTF-8"> | 2 <meta charset="UTF-8"> |
| 3 <style> | 3 <style> |
| 4 .container { | 4 .container { |
| 5 display: inline-block; | 5 display: inline-block; |
| 6 } | 6 } |
| 7 .parent { | 7 .parent { |
| 8 r: 30px; | 8 r: 30px; |
| 9 } | 9 } |
| 10 .target { | 10 .target { |
| 11 fill: black; | 11 fill: black; |
| 12 r: 10px; | 12 r: 10px; |
| 13 } | 13 } |
| 14 .expected { | 14 .expected { |
| 15 fill: green; | 15 fill: green; |
| 16 } | 16 } |
| 17 </style> | 17 </style> |
| 18 <body> | 18 <body> |
| 19 <template id="target-template"> | 19 <template id="target-template"> |
| 20 <svg width="70" height="70"> | 20 <svg width="70" height="70"> |
| 21 <circle cx="35" cy="35" r="10" class="target"/> | 21 <circle cx="35" cy="35" r="10" class="target"/> |
| 22 </svg> | 22 </svg> |
| 23 </template> | 23 </template> |
| 24 <script src="resources/interpolation-test.js"></script> | 24 <script src="resources/interpolation-test.js"></script> |
| 25 <script> | 25 <script> |
| 26 assertInterpolation({ | 26 assertInterpolation({ |
| 27 property: 'r', | 27 property: 'r', |
| 28 from: '', | 28 from: neutralKeyframe, |
| 29 to: '20px', | 29 to: '20px', |
| 30 }, [ | 30 }, [ |
| 31 {at: -0.3, is: '7px'}, | 31 {at: -0.3, is: '7px'}, |
| 32 {at: 0, is: '10px'}, | 32 {at: 0, is: '10px'}, |
| 33 {at: 0.3, is: '13px'}, | 33 {at: 0.3, is: '13px'}, |
| 34 {at: 0.6, is: '16px'}, | 34 {at: 0.6, is: '16px'}, |
| 35 {at: 1, is: '20px'}, | 35 {at: 1, is: '20px'}, |
| 36 {at: 1.5, is: '25px'}, | 36 {at: 1.5, is: '25px'}, |
| 37 ]); | 37 ]); |
| 38 | 38 |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 }, [ | 142 }, [ |
| 143 {at: -0.3, is: '0'}, | 143 {at: -0.3, is: '0'}, |
| 144 {at: 0, is: '0'}, | 144 {at: 0, is: '0'}, |
| 145 {at: 0.3, is: '6'}, | 145 {at: 0.3, is: '6'}, |
| 146 {at: 0.6, is: '12'}, | 146 {at: 0.6, is: '12'}, |
| 147 {at: 1, is: '20'}, | 147 {at: 1, is: '20'}, |
| 148 {at: 1.5, is: '30'}, | 148 {at: 1.5, is: '30'}, |
| 149 ]); | 149 ]); |
| 150 </script> | 150 </script> |
| 151 </body> | 151 </body> |
| OLD | NEW |