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