| Index: Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| diff --git a/Source/core/css/ComputedStyleCSSValueMapping.cpp b/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| index ad9baf3a8a5c10161d961f71ddb065d20987cd9e..f8e78ae8c95f1fca627ac709c8e341646eb887a5 100644
|
| --- a/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| +++ b/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| @@ -952,11 +952,9 @@ static PassRefPtrWillBeRawPtr<CSSValue> createTransitionPropertyValue(const CSST
|
| {
|
| if (property.propertyType == CSSTransitionData::TransitionNone)
|
| return cssValuePool().createIdentifierValue(CSSValueNone);
|
| - if (property.propertyType == CSSTransitionData::TransitionAll)
|
| - return cssValuePool().createIdentifierValue(CSSValueAll);
|
| - if (property.propertyType == CSSTransitionData::TransitionUnknown)
|
| + if (property.propertyType == CSSTransitionData::TransitionUnknownProperty)
|
| return cssValuePool().createValue(property.propertyString, CSSPrimitiveValue::UnitType::CustomIdentifier);
|
| - ASSERT(property.propertyType == CSSTransitionData::TransitionSingleProperty);
|
| + ASSERT(property.propertyType == CSSTransitionData::TransitionKnownProperty);
|
| return cssValuePool().createValue(getPropertyNameString(property.unresolvedProperty), CSSPrimitiveValue::UnitType::CustomIdentifier);
|
| }
|
|
|
|
|