Index: third_party/WebKit/Source/core/css/CSSCrossfadeValue.cpp |
diff --git a/third_party/WebKit/Source/core/css/CSSCrossfadeValue.cpp b/third_party/WebKit/Source/core/css/CSSCrossfadeValue.cpp |
index d4a320863c678097e0b20c0610979b6399d1cbe2..3816da275d85beed59a326de84d2c65d68a6f2c5 100644 |
--- a/third_party/WebKit/Source/core/css/CSSCrossfadeValue.cpp |
+++ b/third_party/WebKit/Source/core/css/CSSCrossfadeValue.cpp |
@@ -37,7 +37,7 @@ |
static bool subimageIsPending(CSSValue* value) |
{ |
if (value->isImageValue()) |
- return toCSSImageValue(value)->isCachePending(); |
+ return toCSSImageValue(value)->cachedOrPendingImage()->isPendingImage(); |
if (value->isImageGeneratorValue()) |
return toCSSImageGeneratorValue(value)->isPending(); |
@@ -66,7 +66,7 @@ |
return nullptr; |
if (value->isImageValue()) { |
- StyleFetchedImage* styleImageResource = toCSSImageValue(value)->cacheImage(document); |
+ StyleFetchedImage* styleImageResource = toCSSImageValue(value)->cachedImage(document); |
if (!styleImageResource) |
return nullptr; |