| Index: third_party/WebKit/Source/core/animation/LengthBoxStyleInterpolation.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/LengthBoxStyleInterpolation.cpp b/third_party/WebKit/Source/core/animation/LengthBoxStyleInterpolation.cpp
|
| index 6db5bf9af2845faef19cab1e47af9e63178a2021..6b995d1e0794d65e312cc5e1ee80aa6502290d9b 100644
|
| --- a/third_party/WebKit/Source/core/animation/LengthBoxStyleInterpolation.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/LengthBoxStyleInterpolation.cpp
|
| @@ -23,8 +23,8 @@ bool onlyInterpolateBetweenLengthAndCSSValueAuto(const CSSQuadValue& startRect,
|
|
|
| PassRefPtr<LengthBoxStyleInterpolation> LengthBoxStyleInterpolation::maybeCreateFrom(CSSValue& start, CSSValue& end, CSSPropertyID id)
|
| {
|
| - bool startRect = start.isQuadValue() && toCSSQuadValue(start).serializationType() == CSSQuadValue::SerializationType::SerializeAsRect;
|
| - bool endRect = end.isQuadValue() && toCSSQuadValue(end).serializationType() == CSSQuadValue::SerializationType::SerializeAsRect;
|
| + bool startRect = start.isQuadValue() && toCSSQuadValue(start).serializationType() == CSSQuadValue::TypeForSerialization::SerializeAsRect;
|
| + bool endRect = end.isQuadValue() && toCSSQuadValue(end).serializationType() == CSSQuadValue::TypeForSerialization::SerializeAsRect;
|
|
|
| if (startRect && endRect)
|
| return adoptRef(new LengthBoxStyleInterpolation(lengthBoxtoInterpolableValue(start, end, false), lengthBoxtoInterpolableValue(end, start, true), id, &start, &end));
|
|
|