Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / animateMotion-path-change-crash.svg
blob10cad989ce686796dea0e64c47bf087b38415634
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"/>
5 <path id="curve"/>
6 </animateMotion>
7 <script type="text/javascript"><![CDATA[
8 if (window.testRunner)
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();
22 }, 1);
23 ]]></script>
24 </svg>