Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / animations / multiple-begin-animation.svg
blob0b6a1c84f6db74f695950312be583b2d1ce108e7
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
3 <svg xmlns="http://www.w3.org/2000/svg" onload="loaded()">
4 <rect width="10" height="100" fill="green">
5 <animate attributeName="width" attributeType="XML" begin="0s; 2s" from="0" to="200" dur="4s" fill="freeze"/>
6 </rect>
7 <script>
8 if (window.testRunner)
9 testRunner.waitUntilDone();
11 function loaded() {
12 document.documentElement.setCurrentTime(4);
13 document.documentElement.pauseAnimations();
15 if (window.testRunner)
16 testRunner.notifyDone();
18 </script>
19 </svg>