| Index: Source/core/css/resolver/StyleResolver.cpp
|
| diff --git a/Source/core/css/resolver/StyleResolver.cpp b/Source/core/css/resolver/StyleResolver.cpp
|
| index 717880f1a1df03e0e8ba899ba3e9dce2fbdcc684..f32dc486db261e0eea55f20492ee46488f665f19 100644
|
| --- a/Source/core/css/resolver/StyleResolver.cpp
|
| +++ b/Source/core/css/resolver/StyleResolver.cpp
|
| @@ -829,6 +829,8 @@ void StyleResolver::resolveKeyframes(Element* element, const RenderStyle* style,
|
| // FIXME: Build the correct chained timing function when this property is specified.
|
| if (property == CSSPropertyWebkitAnimationTimingFunction || property == CSSPropertyAnimationTimingFunction)
|
| continue;
|
| + if (!CSSAnimations::isAnimatableProperty(property))
|
| + continue;
|
| keyframe->setPropertyValue(property, firstOffsetKeyframe ? firstOffsetKeyframe->propertyValue(property) : CSSAnimatableValueFactory::create(property, keyframeStyle.get()).get());
|
| }
|
| if (!firstOffsetKeyframe)
|
|
|