| Index: Source/core/animation/ImageStyleInterpolation.cpp
|
| diff --git a/Source/core/animation/ImageStyleInterpolation.cpp b/Source/core/animation/ImageStyleInterpolation.cpp
|
| index fd0306b185fd403dc93e6a0dbd3eb875c74db4b4..f81b5a38cabb8728022ece932c6102fee3a981be 100644
|
| --- a/Source/core/animation/ImageStyleInterpolation.cpp
|
| +++ b/Source/core/animation/ImageStyleInterpolation.cpp
|
| @@ -19,11 +19,11 @@ void ImageStyleInterpolation::apply(StyleResolverState& state) const
|
| {
|
| double cachedValue = toInterpolableNumber(m_cachedValue.get())->value();
|
| if (cachedValue <= 0.0) {
|
| - StyleBuilder::applyProperty(m_id, state, m_initialImage.get());
|
| + StyleBuilder::applyProperty(m_id, state, m_initialImage);
|
| return;
|
| }
|
| if (cachedValue >= 1.0) {
|
| - StyleBuilder::applyProperty(m_id, state, m_finalImage.get());
|
| + StyleBuilder::applyProperty(m_id, state, m_finalImage);
|
| return;
|
| }
|
| RefPtrWillBeRawPtr<CSSCrossfadeValue> crossfadeValue = CSSCrossfadeValue::create(m_initialImage, m_finalImage);
|
|
|