Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / animations / animate-linear-discrete-additive-c.svg
blobb134383b22c19a5be4d5b234d9996958bcc070e1
1 <?xml version="1.0" encoding="UTF-8"?>
2 <svg viewBox="0 0 300 200" xmlns="http://www.w3.org/2000/svg" onload="loaded()">
3 <title>Test mixed cardinality animations</title>
4 <g transform="translate(50,20)">
5 <text x="0" y="0">
6 <!-- Test that an animated list of different cardinality works properly -->
7 ABC
8 <animate attributeName="x" dur="5s" repeatCount="10" values="1; 2,3,4,5; 3"/>
9 </text>
10 <text x="0" y="30">
11 <!-- Test that an animated list of different cardinality works properly -->
12 DEF
13 <animate attributeName="x" dur="7s" repeatCount="10" values="1; 2,3,4,5; 3"/>
14 </text>
15 <text y="60">
16 <!-- Test that an sum works properly with mixed cardinality -->
17 GHI
18 <animate attributeName="x" additive="sum" accumulate="sum" dur="2s" repeatCount="25" values="0; 10; 20 20; 30" calcMode="linear" />
19 </text>
20 <text y="90">
21 <!-- Test that an sum works properly with mixed cardinality -->
22 JKL
23 <animate attributeName="x" additive="sum" accumulate="sum" dur="2s" repeatCount="25" values="0 0; 10 10; 40" calcMode="linear" />
24 </text>
25 </g>
26 <script>
27 if (window.testRunner)
28 testRunner.waitUntilDone();
30 function loaded() {
31 document.documentElement.setCurrentTime(11);
32 if (window.testRunner)
33 testRunner.notifyDone();
35 </script>
36 </svg>