OLD | NEW |
---|---|
(Empty) | |
1 description("Tests parsing of keySplines attribute."); | |
2 | |
3 var animate = document.createElementNS("http://www.w3.org/2000/svg", "animate"); | |
4 animate.setAttribute("keySplines", ";;"); | |
5 animate.setAttribute("keySplines", "0 ,0 1 , 1 ;;"); | |
6 | |
7 var successfullyParsed = true; | |
OLD | NEW |