| Index: Source/core/svg/SVGAnimatedTypeAnimator.cpp
|
| diff --git a/Source/core/svg/SVGAnimatedTypeAnimator.cpp b/Source/core/svg/SVGAnimatedTypeAnimator.cpp
|
| index f2848d9688c2f932037fb3481f7f85a7d4d81861..087699a8abf35b7df0b1d441e61eae70e6252768 100644
|
| --- a/Source/core/svg/SVGAnimatedTypeAnimator.cpp
|
| +++ b/Source/core/svg/SVGAnimatedTypeAnimator.cpp
|
| @@ -21,7 +21,7 @@
|
| #include "config.h"
|
| #include "core/svg/SVGAnimatedTypeAnimator.h"
|
|
|
| -#include "core/css/parser/BisonCSSParser.h"
|
| +#include "core/css/parser/CSSParser.h"
|
| #include "core/svg/SVGAnimateTransformElement.h"
|
| #include "core/svg/SVGAnimatedColor.h"
|
| #include "core/svg/SVGAnimationElement.h"
|
| @@ -87,7 +87,7 @@
|
|
|
| switch (m_type) {
|
| case AnimatedColor:
|
| - return SVGColorProperty::create(value.isEmpty() ? StyleColor::currentColor() : BisonCSSParser::colorFromRGBColorString(value));
|
| + return SVGColorProperty::create(value.isEmpty() ? StyleColor::currentColor() : CSSParser::colorFromRGBColorString(value));
|
| case AnimatedNumber: {
|
| RefPtr<SVGNumber> property = SVGNumber::create();
|
| property->setValueAsString(value, IGNORE_EXCEPTION);
|
|
|