4 Test for crbug.com/
276111: This test passes if it does not crash.
5 <svg xmlns=
"http://www.w3.org/2000/svg">
7 <animateMotion path=
"M 1 2Z" id=
"animateMotionElement" calcMode=
"spline" values=
"M 1 2Z; M3 4Z"/>
11 if (window
.testRunner
) {
12 testRunner
.dumpAsText();
13 testRunner
.waitUntilDone();
16 function removePathAndFinishTest() {
17 animateMotionElement
.removeAttribute('path');
18 setTimeout(function() {
19 document
.write("PASS");
20 if (window
.testRunner
)
21 testRunner
.notifyDone();
25 setTimeout('removePathAndFinishTest()', 0);