| Index: Source/core/animation/DoubleStyleInterpolation.cpp
|
| diff --git a/Source/core/animation/DoubleStyleInterpolation.cpp b/Source/core/animation/DoubleStyleInterpolation.cpp
|
| index 75fee5638af16bfa5af805d1ae924a2f190f654a..341a3874ba23afcb0aebf4b6a4c3408368cf1c09 100644
|
| --- a/Source/core/animation/DoubleStyleInterpolation.cpp
|
| +++ b/Source/core/animation/DoubleStyleInterpolation.cpp
|
| @@ -126,7 +126,7 @@ PassRefPtrWillBeRawPtr<CSSValue> DoubleStyleInterpolation::interpolableValueToMo
|
| {
|
| RefPtrWillBeRawPtr<CSSValueList> list = CSSValueList::createSpaceSeparated();
|
| if (flag)
|
| - list->append(CSSPrimitiveValue::createIdentifier(CSSValueAuto));
|
| + list->append(CSSPrimitiveValue::create(CSSValueAuto));
|
| ASSERT(value->isNumber());
|
| list->append(CSSPrimitiveValue::create(toInterpolableNumber(value)->value(), CSSPrimitiveValue::CSS_DEG));
|
| return list.release();
|
|
|