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