| Index: third_party/WebKit/Source/core/animation/CSSFilterListInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSFilterListInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSFilterListInterpolationType.cpp
|
| index 4ad7cdf0452ceb5cd70111db13d0bf893eb5227d..a0ac00cb8790988fa6176f9a818cc7ab53a962d4 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSFilterListInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSFilterListInterpolationType.cpp
|
| @@ -7,6 +7,7 @@
|
| #include "core/animation/FilterInterpolationFunctions.h"
|
| #include "core/animation/FilterListPropertyFunctions.h"
|
| #include "core/animation/ListInterpolationFunctions.h"
|
| +#include "core/css/CSSIdentifierValue.h"
|
| #include "core/css/CSSValueList.h"
|
| #include "core/css/resolver/StyleResolverState.h"
|
| #include "wtf/PtrUtil.h"
|
| @@ -105,7 +106,7 @@ InterpolationValue CSSFilterListInterpolationType::maybeConvertInherit(const Sty
|
|
|
| InterpolationValue CSSFilterListInterpolationType::maybeConvertValue(const CSSValue& value, const StyleResolverState&, ConversionCheckers&) const
|
| {
|
| - if (value.isPrimitiveValue() && toCSSPrimitiveValue(value).getValueID() == CSSValueNone)
|
| + if (value.isIdentifierValue() && toCSSIdentifierValue(value).getValueID() == CSSValueNone)
|
| return InterpolationValue(InterpolableList::create(0), NonInterpolableList::create());
|
|
|
| if (!value.isBaseValueList())
|
|
|