| Index: Source/core/rendering/style/RenderStyle.cpp
|
| diff --git a/Source/core/rendering/style/RenderStyle.cpp b/Source/core/rendering/style/RenderStyle.cpp
|
| index 3f7f9db77dba34acca91b8910b4872b1c5420583..dd275f0581f2878aa3f4d1deccab751243be77af 100644
|
| --- a/Source/core/rendering/style/RenderStyle.cpp
|
| +++ b/Source/core/rendering/style/RenderStyle.cpp
|
| @@ -1140,12 +1140,12 @@ AnimationList* RenderStyle::accessTransitions()
|
| return rareNonInheritedData->m_transitions.get();
|
| }
|
|
|
| -const Animation* RenderStyle::transitionForProperty(CSSPropertyID property) const
|
| +const CSSAnimationData* RenderStyle::transitionForProperty(CSSPropertyID property) const
|
| {
|
| if (transitions()) {
|
| for (size_t i = 0; i < transitions()->size(); ++i) {
|
| - const Animation* p = transitions()->animation(i);
|
| - if (p->animationMode() == Animation::AnimateAll || p->property() == property) {
|
| + const CSSAnimationData* p = transitions()->animation(i);
|
| + if (p->animationMode() == CSSAnimationData::AnimateAll || p->property() == property) {
|
| return p;
|
| }
|
| }
|
|
|