|
1 <?xml version="1.0"?> |
|
2 <svg xmlns="http://www.w3.org/2000/svg" |
|
3 class="reftest-wait" |
|
4 onload="go()"> |
|
5 <script> |
|
6 function go() { |
|
7 // setCurrentTime to force a sample |
|
8 document.documentElement.setCurrentTime(1); |
|
9 document.documentElement.removeAttribute("class"); |
|
10 } |
|
11 </script> |
|
12 <rect id="myRect" fill="blue" height="40" width="40"> |
|
13 <!-- The "keyTimes" values below are invalid, but they should be ignored |
|
14 (and definitely shouldn't trigger any assertion failures) since we're |
|
15 in paced calcMode. --> |
|
16 <animate attributeName="x" by="50" calcMode="paced" dur="2s" |
|
17 keyTimes="0; -1"/> |
|
18 <animate attributeName="x" by="50" calcMode="paced" dur="2s" |
|
19 keyTimes=""/> |
|
20 <animate attributeName="x" by="50" calcMode="paced" dur="2s" |
|
21 keyTimes="abc"/> |
|
22 <animate attributeName="x" by="50" calcMode="paced" dur="2s" |
|
23 keyTimes="5"/> |
|
24 </rect> |
|
25 </svg> |