OLD | NEW |
(Empty) | |
| 1 description("Tests parsing of values attribute."); |
| 2 |
| 3 var animate = document.createElementNS("http://www.w3.org/2000/svg", "animate"); |
| 4 animate.setAttribute("values", ";;"); |
| 5 animate.setAttribute("values", "300;255;180;30;;"); |
| 6 animate.setAttribute("values", "50%;foo;10%"); |
| 7 animate.setAttribute("values", "50%;;;;10%"); |
| 8 animate.setAttribute("values", "50%; ;10%"); |
| 9 animate.setAttribute("attributeName", "in"); |
| 10 animate.setAttribute("values", ""); |
| 11 |
| 12 var successfullyParsed = true; |
OLD | NEW |