| OLD | NEW |
| 1 <?xml version="1.0" encoding="UTF-8"?> | 1 <?xml version="1.0" encoding="UTF-8"?> |
| 2 <svg viewBox="0 0 300 200" xmlns="http://www.w3.org/2000/svg" onload="loaded()"> | 2 <svg viewBox="0 0 300 200" xmlns="http://www.w3.org/2000/svg" onload="loaded()"> |
| 3 <title>Test mixed cardinality animations</title> | 3 <title>Test mixed cardinality animations</title> |
| 4 <g transform="translate(50,20)"> | 4 <g transform="translate(50,20)"> |
| 5 <text x="0" y="0"> | 5 <text x="0" y="0"> |
| 6 <!-- Test that an animated list of different cardinality works properly
--> | 6 <!-- Test that an animated list of different cardinality works properly
--> |
| 7 ABC | 7 ABC |
| 8 <animate attributeName="x" dur="5s" repeatCount="10" values="1; 2,3,4,5;
3"/> | 8 <animate attributeName="x" dur="5s" repeatCount="10" values="1; 2,3,4,5;
3"/> |
| 9 </text> | 9 </text> |
| 10 <text x="0" y="30"> | 10 <text x="0" y="30"> |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 if (window.layoutTestController) | 27 if (window.layoutTestController) |
| 28 layoutTestController.waitUntilDone(); | 28 layoutTestController.waitUntilDone(); |
| 29 | 29 |
| 30 function loaded() { | 30 function loaded() { |
| 31 document.documentElement.setCurrentTime(8); | 31 document.documentElement.setCurrentTime(8); |
| 32 if (window.layoutTestController) | 32 if (window.layoutTestController) |
| 33 layoutTestController.notifyDone(); | 33 layoutTestController.notifyDone(); |
| 34 } | 34 } |
| 35 </script> | 35 </script> |
| 36 </svg> | 36 </svg> |
| OLD | NEW |