| Index: Source/core/animation/css/CSSAnimatableValueFactory.cpp
|
| diff --git a/Source/core/animation/css/CSSAnimatableValueFactory.cpp b/Source/core/animation/css/CSSAnimatableValueFactory.cpp
|
| index ef85980db41a9fb1fd67366133e7ec685f1ae792..e657df3d06d7ad2758e362c10407c288dac65075 100644
|
| --- a/Source/core/animation/css/CSSAnimatableValueFactory.cpp
|
| +++ b/Source/core/animation/css/CSSAnimatableValueFactory.cpp
|
| @@ -178,8 +178,8 @@ inline static PassRefPtrWillBeRawPtr<AnimatableValue> createFromLengthSize(const
|
| inline static PassRefPtrWillBeRawPtr<AnimatableValue> createFromStyleImage(StyleImage* image)
|
| {
|
| if (image) {
|
| - if (RefPtrWillBeRawPtr<CSSValue> cssValue = image->cssValue())
|
| - return AnimatableImage::create(cssValue.release());
|
| + if (NullableCSSValue cssValue = image->cssValue())
|
| + return AnimatableImage::create(*cssValue);
|
| }
|
| return AnimatableUnknown::create(CSSValueNone);
|
| }
|
|
|