| Index: Source/core/animation/KeyframeAnimationEffect.cpp
|
| diff --git a/Source/core/animation/KeyframeAnimationEffect.cpp b/Source/core/animation/KeyframeAnimationEffect.cpp
|
| index 7c708314da68446648a239ede56188fdbb89eb93..91310774df30b864a1f7085ca41dc1da64b48589 100644
|
| --- a/Source/core/animation/KeyframeAnimationEffect.cpp
|
| +++ b/Source/core/animation/KeyframeAnimationEffect.cpp
|
| @@ -124,6 +124,11 @@ void Keyframe::setPropertyValue(CSSPropertyID property, const AnimatableValue* v
|
| m_propertyValues.add(property, const_cast<AnimatableValue*>(value));
|
| }
|
|
|
| +void Keyframe::clearPropertyValue(CSSPropertyID property)
|
| +{
|
| + m_propertyValues.remove(property);
|
| +}
|
| +
|
| const AnimatableValue* Keyframe::propertyValue(CSSPropertyID property) const
|
| {
|
| ASSERT(m_propertyValues.contains(property));
|
|
|