4 <script type=
"text/javascript">
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();
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"/>