| Index: third_party/WebKit/Source/core/animation/CSSColorInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSColorInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSColorInterpolationType.cpp
|
| index c12d010ef8d7b38f8076349b77db36ec3e03b423..670e863fe3e65b194adccec89837726b95bf80b5 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSColorInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSColorInterpolationType.cpp
|
| @@ -82,7 +82,7 @@ PassOwnPtr<InterpolableValue> CSSColorInterpolationType::maybeCreateInterpolable
|
| const CSSPrimitiveValue& primitive = toCSSPrimitiveValue(value);
|
| if (!primitive.isValueID())
|
| return nullptr;
|
| - if (!CSSPropertyParser::isColorKeyword(primitive.getValueID()))
|
| + if (!isColorKeyword(primitive.getValueID()))
|
| return nullptr;
|
| return createInterpolableColor(primitive.getValueID());
|
| }
|
|
|