| Index: third_party/WebKit/Source/core/animation/InvalidatableInterpolation.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/InvalidatableInterpolation.cpp b/third_party/WebKit/Source/core/animation/InvalidatableInterpolation.cpp
|
| index 2f6b019c464261eeed37f17ac3de20733b4f7090..582b40b435929a83694dd123e57a05a16ea45f70 100644
|
| --- a/third_party/WebKit/Source/core/animation/InvalidatableInterpolation.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/InvalidatableInterpolation.cpp
|
| @@ -146,8 +146,8 @@ void InvalidatableInterpolation::setFlagIfInheritUsed(InterpolationEnvironment&
|
| return;
|
| if (!environment.state().parentStyle())
|
| return;
|
| - const CSSValue* startValue = toCSSPropertySpecificKeyframe(m_startKeyframe)->value();
|
| - const CSSValue* endValue = toCSSPropertySpecificKeyframe(m_endKeyframe)->value();
|
| + const CSSValue* startValue = toCSSPropertySpecificKeyframe(*m_startKeyframe).value();
|
| + const CSSValue* endValue = toCSSPropertySpecificKeyframe(*m_endKeyframe).value();
|
| if ((startValue && startValue->isInheritedValue())
|
| || (endValue && endValue->isInheritedValue())) {
|
| environment.state().parentStyle()->setHasExplicitlyInheritedProperties();
|
|
|