| Index: LayoutTests/svg/custom/script-tests/keyTimes-parsing-error.js
|
| diff --git a/LayoutTests/svg/custom/script-tests/keyTimes-parsing-error.js b/LayoutTests/svg/custom/script-tests/keyTimes-parsing-error.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a0bed9205b1540d12eb02a020cf31943878abcc2
|
| --- /dev/null
|
| +++ b/LayoutTests/svg/custom/script-tests/keyTimes-parsing-error.js
|
| @@ -0,0 +1,7 @@
|
| +description("Tests parsing of keyTimes attribute.");
|
| +
|
| +var animate = document.createElementNS("http://www.w3.org/2000/svg", "animate");
|
| +animate.setAttribute("keyTimes", ";;");
|
| +animate.setAttribute("keyTimes", "0;.25;.5;1;;");
|
| +
|
| +var successfullyParsed = true;
|
|
|