Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / script-tests / animation-values-parsing-error.js
blobdafc094bdaf5f32fa564d12518a0607f11e537e5
1 description("Tests parsing of values attribute.");
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", "");
12 var successfullyParsed = true;