Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / animations / svg-attribute-interpolation / svg-preserveAlpha-interpolation.html
blob31eea1d4a5f88201f3910c052fb9321222242f78
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <template id="target-template">
5 <svg width="90" height="90">
6 <defs>
7 <filter>
8 <feConvolveMatrix in="SourceGraphic" order="2 2" kernelMatrix="100 200 300 400" preserveAlpha="false" class="target" />
9 </filter>
10 </defs>
11 </svg>
12 </template>
13 <script src="resources/interpolation-test.js"></script>
14 <script>
15 'use strict';
16 assertAttributeInterpolation({
17 property: 'preserveAlpha',
18 from: 'false',
19 to: 'true'
20 }, [
21 {at: -2.4, is: 'false'},
22 {at: 0, is: 'false'},
23 {at: 0.2, is: 'false'},
24 {at: 0.6, is: 'true'},
25 {at: 1, is: 'true'},
26 {at: 3.4, is: 'true'}
27 ]);
28 </script>
29 </body>
30 </html>