| Index: Source/core/css/resolver/StyleResolver.cpp
|
| diff --git a/Source/core/css/resolver/StyleResolver.cpp b/Source/core/css/resolver/StyleResolver.cpp
|
| index c618bb6a0f5fd09a5c3f4368fb9c0650b77df08b..294b503829fa25ca3dfd84820b612be2006369ad 100644
|
| --- a/Source/core/css/resolver/StyleResolver.cpp
|
| +++ b/Source/core/css/resolver/StyleResolver.cpp
|
| @@ -836,6 +836,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)
|
|
|