OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <body> | 3 <body> |
4 <template id="target-template"> | 4 <template id="target-template"> |
5 <svg width="90" height="90"> | 5 <svg width="90" height="90"> |
6 <defs> | 6 <defs> |
7 <marker class="target" /> | 7 <marker class="target" /> |
8 </defs> | 8 </defs> |
9 </svg> | 9 </svg> |
10 </template> | 10 </template> |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 {at: -0.4, is: 88}, | 52 {at: -0.4, is: 88}, |
53 {at: 0, is: 120}, | 53 {at: 0, is: 120}, |
54 {at: 0.2, is: 136}, | 54 {at: 0.2, is: 136}, |
55 {at: 0.6, is: 168}, | 55 {at: 0.6, is: 168}, |
56 {at: 1, is: 200}, | 56 {at: 1, is: 200}, |
57 {at: 1.4, is: 232} | 57 {at: 1.4, is: 232} |
58 ]); | 58 ]); |
59 assertAttributeInterpolation({ | 59 assertAttributeInterpolation({ |
60 property: 'orient', | 60 property: 'orient', |
61 underlying: '20', | 61 underlying: '20', |
| 62 from: neutralKeyframe, |
62 to: '180', | 63 to: '180', |
63 toComposite: 'replace' | 64 toComposite: 'replace' |
64 }, [ | 65 }, [ |
65 {at: -0.4, is: -44}, | 66 {at: -0.4, is: -44}, |
66 {at: 0, is: 20}, | 67 {at: 0, is: 20}, |
67 {at: 0.2, is: 52}, | 68 {at: 0.2, is: 52}, |
68 {at: 0.6, is: 116}, | 69 {at: 0.6, is: 116}, |
69 {at: 1, is: 180}, | 70 {at: 1, is: 180}, |
70 {at: 1.4, is: 244} | 71 {at: 1.4, is: 244} |
71 ]); | 72 ]); |
72 </script> | 73 </script> |
73 </body> | 74 </body> |
74 </html> | 75 </html> |
OLD | NEW |