3 Test for WK108828: This test passes if it does not crash.
4 <svg id=
"svg" xmlns=
"http://www.w3.org/2000/svg" width=
"500" height=
"500">
5 <!-- animateMotion with invalid keyTimes. -->
6 <rect x=
"0" y=
"0" width=
"100" height=
"100" fill=
"green">
7 <animateMotion keyTimes=
"0; 0.5; 0.5; 0.5; 1" values=
"M 0 0 Z; M 0 0 Z"/>
11 if (window
.testRunner())
12 testRunner
.waitUntilDone();
14 setTimeout(function() {
15 var svg
= document
.getElementById('svg');
16 svg
.pauseAnimations();
17 svg
.setCurrentTime(10);
18 if (window
.testRunner
)
19 testRunner
.notifyDone();