| 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 d4875facc0974b86b19eebea9f1201bfd4d9a890..6afcd5a579456a5a516d126caeecfdf6fdc36f16 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSCrossfadeValue.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSCrossfadeValue.cpp
|
| @@ -88,9 +88,7 @@ static Image* renderableImageForCSSValue(CSSValue* value, const LayoutObject* la
|
| {
|
| ImageResource* cachedImage = cachedImageForCSSValue(value, &layoutObject->document());
|
|
|
| - // If the image can be rendered at 1 zoom it will have non-empty dimension
|
| - // and should be able to render at other scales as well.
|
| - if (!cachedImage || !cachedImage->canRender(*layoutObject, 1))
|
| + if (!cachedImage || !cachedImage->canRender())
|
| return nullptr;
|
|
|
| return cachedImage->image();
|
|
|