Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / animations / animateTransform-from-by-scale-additive-sum.svg
blobdab169c13ce2ca827fe2b5498efef382ae746d6b
1 <?xml version="1.0"?>
2 <svg viewBox="0 0 1000 600" onload="loaded()" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3 <rect x="0" y="0" width="1000" height="600" fill="#fff" />
5 <g fill="green" transform="translate(200,200)">
6 <path d="M-25,0C120,-40 -80,-60 20,25zM20 10q-10 -10 2 -10" transform="scale(2,2)">
7 <animateTransform attributeName="transform" type="scale" additive="sum" from="3" by="2" begin="0s" dur="1s" fill="freeze"/>
8 </path>
9 </g>
10 <script>
11 if (window.testRunner)
12 testRunner.waitUntilDone();
14 function loaded() {
15 document.documentElement.setCurrentTime(2);
16 if (window.testRunner)
17 testRunner.notifyDone();
19 </script>
20 </svg>