| Index: third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp
|
| index 79396ecd3da9d93819b9e4efadbc84472f459530..73c89993f0938bdeee431084f91583e5f2c46359 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp
|
| @@ -7,7 +7,7 @@
|
| #include "core/animation/CSSImageInterpolationType.h"
|
| #include "core/animation/ImageListPropertyFunctions.h"
|
| #include "core/animation/ListInterpolationFunctions.h"
|
| -#include "core/css/CSSPrimitiveValue.h"
|
| +#include "core/css/CSSIdentifierValue.h"
|
| #include "core/css/CSSValueList.h"
|
| #include "core/css/resolver/StyleResolverState.h"
|
| #include "wtf/PtrUtil.h"
|
| @@ -111,8 +111,8 @@ InterpolationValue CSSImageListInterpolationType::maybeConvertValue(
|
| const CSSValue& value,
|
| const StyleResolverState&,
|
| ConversionCheckers&) const {
|
| - if (value.isPrimitiveValue() &&
|
| - toCSSPrimitiveValue(value).getValueID() == CSSValueNone)
|
| + if (value.isIdentifierValue() &&
|
| + toCSSIdentifierValue(value).getValueID() == CSSValueNone)
|
| return nullptr;
|
|
|
| CSSValueList* tempList = nullptr;
|
|
|