Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / script-tests / keyTimes-parsing-error.js
bloba0bed9205b1540d12eb02a020cf31943878abcc2
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;