Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / script-tests / keySplines-parsing-error.js
blob2ba3ba8995f716e205842a70e38694e80d670bba
1 description("Tests parsing of keySplines attribute.");
3 var animate = document.createElementNS("http://www.w3.org/2000/svg", "animate");
4 animate.setAttribute("keySplines", ";;");
5 animate.setAttribute("keySplines", "0 ,0  1 , 1  ;;");
7 var successfullyParsed = true;