1 description("Tests parsing of keyTimes attribute.");
3 var animate = document.createElementNS("http://www.w3.org/2000/svg", "animate");
4 animate.setAttribute("keyTimes", ";;");
5 animate.setAttribute("keyTimes", "0;.25;.5;1;;");
7 var successfullyParsed = true;