Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / animations / animateTransform-by-scale.svg
blob58c8d19be3037260526a8dd9d716c4faeae1d3a9
1 <?xml version="1.0"?>
2 <svg viewBox="0 0 500 300" onload="loaded()" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3 <rect x="0" y="0" width="500" height="300" fill="#fff" />
5 <g fill="green" transform="translate(100,100)">
6 <path d="M-25,0C120,-40 -80,-60 20,25zM20 10q-10 -10 2 -10">
7 <animateTransform attributeName="transform" type="scale" by="3" 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>