| Index: Source/core/animation/css/CSSAnimatableValueFactory.cpp
|
| diff --git a/Source/core/animation/css/CSSAnimatableValueFactory.cpp b/Source/core/animation/css/CSSAnimatableValueFactory.cpp
|
| index abd9d8c51ef5f975efe67f65915e64d31ba6b226..43b581a40373e4362f33002e9926da04dcee7504 100644
|
| --- a/Source/core/animation/css/CSSAnimatableValueFactory.cpp
|
| +++ b/Source/core/animation/css/CSSAnimatableValueFactory.cpp
|
| @@ -178,8 +178,7 @@ 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());
|
| + return AnimatableImage::create(*image->cssValue());
|
| }
|
| return AnimatableUnknown::create(CSSValueNone);
|
| }
|
|
|