Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / animations / multiple-animateTransform-additive-sum.svg
bloba34dda6a578477755359321ccf4eff7eb61d68a5
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>Example of Multiple animateTransform elements</title>
4 <g transform="translate(120,60)">
5 <rect x="-10" y="-10" width="20" height="20" style="fill: #ff9; stroke: black;">
6 <animateTransform attributeName="transform" attributeType="XML" type="scale" from="1 1" to="4 2" additive="sum" begin="0s" dur="4s" fill="freeze"/>
7 <animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0" to="45" additive="sum" begin="1s" dur="4s" fill="freeze"/>
8 </rect>
9 </g>
10 <script>
11 if (window.testRunner)
12 testRunner.waitUntilDone();
14 function loaded() {
15 document.documentElement.setCurrentTime(6);
16 if (window.testRunner)
17 testRunner.notifyDone();
19 </script>
20 </svg>