1 <svg xmlns=
"http://www.w3.org/2000/svg" xmlns:
xlink=
"http://www.w3.org/1999/xlink">
2 <text x=
"0" y=
"10">Test for WK106530: This test passes if it does not crash.
</text>
3 <animateMotion dur=
"2s" begin=
"animateMotion1.begin" id=
"animateMotion2" ><animateMotion id=
"animateMotion1" />
4 <mpath xlink:
href=
"#curve"/>
7 <script type=
"text/javascript"><![CDATA[
9 testRunner.waitUntilDone();
11 var animateMotion2El = document.getElementById(
"animateMotion2");
12 var curveEl = document.getElementById(
"curve");
14 setTimeout(function(){
15 curveEl.appendChild(animateMotion2El.cloneNode(true));
16 animateMotion2El.appendChild(curveEl.cloneNode(true));
17 curveEl.parentNode.removeChild(curveEl);
18 if (window.testRunner) {
19 testRunner.dumpAsText();
20 testRunner.notifyDone();