OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <script> |
| 3 if (window.testRunner) { |
| 4 testRunner.dumpAsText(); |
| 5 testRunner.waitUntilDone(); |
| 6 } |
| 7 |
| 8 var done = false; |
| 9 function repeatHandler() { |
| 10 if (done && window.testRunner) |
| 11 testRunner.notifyDone() |
| 12 } |
| 13 function handler() { |
| 14 group.before(firstroot); |
| 15 done = true; |
| 16 } |
| 17 </script> |
| 18 <svg id="firstroot"></svg> |
| 19 <svg> |
| 20 <g id="group"> |
| 21 <set attributeName="stroke-dashoffset" xlink:href="#firstroot" onbegin="hand
ler()"/> |
| 22 </g> |
| 23 <animate attributeName="stroke-linejoin" dur="0.1s" repeatDur="indefinite" onr
epeat="repeatHandler()"> |
| 24 </svg> |
| 25 <p>PASS if no crash</p> |
OLD | NEW |