Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / animations / animation-dependency-crash.html
blob708d05ad316ff4ef5b9231a6e122e5f0dadf93d5
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script type="text/javascript">
5 if (window.testRunner)
6 testRunner.waitUntilDone();
8 window.setTimeout(function() {
9 document.body.innerHTML = 'PASS: Test did not crash.';
10 if (window.testRunner) {
11 testRunner.dumpAsText();
12 testRunner.notifyDone();
14 }, 120);
15 </script>
16 </head>
17 <body>
18 Test infinite animation loop<br/>
19 This test passes if it does not crash<br/>
20 <svg xmlns="http://www.w3.org/2000/svg">
21 <circle r="10" cx="50" cy="50" fill="green">
22 <animate id="anim1" attributeName="opacity" from="0" to="1" begin="0s; anim3.end" dur="0.01s"/>
23 <animate id="anim2" attributeName="opacity" from="1" to="1" begin="anim1.end" dur="0.03s" fill="freeze"/>
24 <animate id="anim3" attributeName="opacity" from="1" to="0" begin="anim2.end" dur="0.01s" fill="freeze"/>
25 </circle>
26 </svg>
27 </body>
28 </html>