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="0" height="0"> | 5 <svg width="0" height="0"> |
6 <filter> | 6 <filter> |
7 <defs> | 7 <defs> |
8 <feSpotLight class="target" /> | 8 <feSpotLight class="target" /> |
9 </defs> | 9 </defs> |
10 </filter> | 10 </filter> |
(...skipping 30 matching lines...) Expand all Loading... |
41 {at: 0, is: 1}, | 41 {at: 0, is: 1}, |
42 {at: 0.2, is: 3}, | 42 {at: 0.2, is: 3}, |
43 {at: 0.6, is: 7}, | 43 {at: 0.6, is: 7}, |
44 {at: 1, is: 11}, | 44 {at: 1, is: 11}, |
45 {at: 1.4, is: 15}, | 45 {at: 1.4, is: 15}, |
46 ]); | 46 ]); |
47 | 47 |
48 assertAttributeInterpolation({ | 48 assertAttributeInterpolation({ |
49 property: 'limitingConeAngle', | 49 property: 'limitingConeAngle', |
50 underlying: '5', | 50 underlying: '5', |
| 51 from: neutralKeyframe, |
51 to: '10', | 52 to: '10', |
52 toComposite: 'replace', | 53 toComposite: 'replace', |
53 }, [ | 54 }, [ |
54 {at: -0.4, is: 3}, | 55 {at: -0.4, is: 3}, |
55 {at: 0, is: 5}, | 56 {at: 0, is: 5}, |
56 {at: 0.2, is: 6}, | 57 {at: 0.2, is: 6}, |
57 {at: 0.6, is: 8}, | 58 {at: 0.6, is: 8}, |
58 {at: 1, is: 10}, | 59 {at: 1, is: 10}, |
59 {at: 1.4, is: 12}, | 60 {at: 1.4, is: 12}, |
60 ]); | 61 ]); |
61 </script> | 62 </script> |
62 </body> | 63 </body> |
63 </html> | 64 </html> |
OLD | NEW |