Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / animations / svg-attribute-interpolation / svg-spreadMethod-interpolation.html
blob88fc1acfe15aa33a78ae68bd611a341624f37256
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <template id="target-template">
5 <svg width="90" height="90">
6 <linearGradient class="target" />
7 </svg>
8 </template>
9 <script src="resources/interpolation-test.js"></script>
10 <script>
11 'use strict';
12 assertAttributeInterpolation({
13 property: 'spreadMethod',
14 from: 'pad',
15 to: 'repeat'
16 }, [
17 {at: -0.4, is: 'pad'},
18 {at: 0, is: 'pad'},
19 {at: 0.2, is: 'pad'},
20 {at: 0.6, is: 'repeat'},
21 {at: 1, is: 'repeat'},
22 {at: 1.4, is: 'repeat'}
23 ]);
24 </script>
25 </body>
26 </html>