Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(325)

Unified Diff: Source/core/animation/css/CSSAnimatableValueFactory.cpp

Issue 196573030: Web Animations API: Load resources referenced in element.animate() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/animation/css/CSSAnimatableValueFactory.cpp
diff --git a/Source/core/animation/css/CSSAnimatableValueFactory.cpp b/Source/core/animation/css/CSSAnimatableValueFactory.cpp
index 6068a1b6c67bb4403473531221b8a99b46df7c40..3202f0fda55be123bbe61db0f7d123eb22b0dfb8 100644
--- a/Source/core/animation/css/CSSAnimatableValueFactory.cpp
+++ b/Source/core/animation/css/CSSAnimatableValueFactory.cpp
@@ -156,7 +156,7 @@ inline static PassRefPtr<AnimatableValue> createFromLengthSize(const LengthSize&
inline static PassRefPtr<AnimatableValue> createFromStyleImage(StyleImage* image)
{
if (image)
- return AnimatableImage::create(image);
+ return AnimatableImage::create(image->cssValue());
return AnimatableUnknown::create(CSSValueNone);
}

Powered by Google App Engine
This is Rietveld 408576698