Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Side by Side Diff: LayoutTests/svg/custom/script-tests/animation-values-parsing-error.js

Issue 584053002: Handle semicolons at end of keyTimes and values (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Address ed's remark Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 description("Tests parsing of values attribute.");
2
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", "");
11
12 var successfullyParsed = true;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698