| Index: Source/core/layout/LayoutImageResource.cpp
|
| diff --git a/Source/core/layout/LayoutImageResource.cpp b/Source/core/layout/LayoutImageResource.cpp
|
| index 85e24d61d56493228c2276e38b94076d114c9807..3a0bf55a0e8645669a270d1cec857083b9101e8e 100644
|
| --- a/Source/core/layout/LayoutImageResource.cpp
|
| +++ b/Source/core/layout/LayoutImageResource.cpp
|
| @@ -91,8 +91,10 @@ void LayoutImageResource::resetAnimation()
|
| void LayoutImageResource::setContainerSizeForLayoutObject(const IntSize& imageContainerSize)
|
| {
|
| ASSERT(m_layoutObject);
|
| - if (m_cachedImage)
|
| - m_cachedImage->setContainerSizeForLayoutObject(m_layoutObject, imageContainerSize, m_layoutObject->style()->effectiveZoom());
|
| + if (m_cachedImage) {
|
| + m_cachedImage->setContainerSizeForLayoutObject(
|
| + m_layoutObject, imageContainerSize, m_layoutObject->style()->effectiveZoom());
|
| + }
|
| }
|
|
|
| LayoutSize LayoutImageResource::getImageSize(float multiplier, ImageResource::SizeType type) const
|
|
|