| Index: third_party/WebKit/Source/core/svg/SVGLengthList.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGLengthList.cpp b/third_party/WebKit/Source/core/svg/SVGLengthList.cpp
|
| index e3137de6c0104ee8e642ccf11b1f73d6fcd78a30..b744166193448c94b8f6898f34e59720754f8ca3 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGLengthList.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGLengthList.cpp
|
| @@ -74,6 +74,7 @@ SVGParsingError SVGLengthList::parseInternal(const CharType*& ptr, const CharTyp
|
| const CharType* listStart = ptr;
|
| while (ptr < end) {
|
| const CharType* start = ptr;
|
| + // TODO(shanmuga.m): Enable calc for SVGLengthList
|
| while (ptr < end && *ptr != ',' && !isHTMLSpace<CharType>(*ptr))
|
| ptr++;
|
| if (ptr == start)
|
| @@ -143,6 +144,7 @@ void SVGLengthList::calculateAnimatedValue(SVGAnimationElement* animationElement
|
| return;
|
|
|
| for (size_t i = 0; i < toLengthListSize; ++i) {
|
| + // TODO(shanmuga.m): Support calc for SVGLengthList animation
|
| float animatedNumber = at(i)->value(lengthContext);
|
| CSSPrimitiveValue::UnitType unitType = toList->at(i)->typeWithCalcResolved();
|
| float effectiveFrom = 0;
|
|
|