| OLD | NEW |
| 1 <svg xmlns="http://www.w3.org/2000/svg"> | 1 <svg xmlns="http://www.w3.org/2000/svg"> |
| 2 <!-- Test for WK85382 - passes if there is no crash --> | 2 <!-- Test for WK85382 - passes if there is no crash --> |
| 3 <polygon> | 3 <polygon> |
| 4 <animate values="1,2; 3,4; abc" attributeName="points"/> | 4 <animate values="1,2; 3,4; abc" attributeName="points"/> |
| 5 </polygon> | 5 </polygon> |
| 6 <tspan> | 6 <tspan> |
| 7 <animate values="1; 2; a" attributeName="rotate"/> | 7 <animate values="1; 2; a" attributeName="rotate"/> |
| 8 </tspan> | 8 </tspan> |
| 9 <tspan> | 9 <tspan> |
| 10 <animate values="1; 2; a" attributeName="x"/> | 10 <animate values="1; 2; a" attributeName="x"/> |
| 11 </tspan> | 11 </tspan> |
| 12 <path> | 12 <path> |
| 13 <!-- doesn't crash but added to catch regressions --> | 13 <!-- doesn't crash but added to catch regressions --> |
| 14 <animate values="m1,1 2,2z; m1,1 2,2z; m1,1z" attributeName="d"/> | 14 <animate values="m1,1 2,2z; m1,1 2,2z; m1,1z" attributeName="d"/> |
| 15 </path> | 15 </path> |
| 16 <text id="log"/> | 16 <text id="log"/> |
| 17 <script> | 17 <script> |
| 18 <![CDATA[ | 18 <![CDATA[ |
| 19 document.getElementById("log").appendChild(document.createTextNode("PASS")); | 19 document.getElementById("log").appendChild(document.createTextNode("PASS")); |
| 20 if (window.layoutTestController) | 20 if (window.layoutTestController) |
| 21 window.layoutTestController.dumpAsText(); | 21 window.layoutTestController.dumpAsText(); |
| 22 ]]> | 22 ]]> |
| 23 </script> | 23 </script> |
| 24 </svg> | 24 </svg> |
| OLD | NEW |