| Index: third_party/WebKit/Source/core/frame/SmartClip.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/SmartClip.cpp b/third_party/WebKit/Source/core/frame/SmartClip.cpp
|
| index f21ea6684c9caa801ca00fe0ff6dbb5370c8d50d..98fd4519bd09b3a500ca060eb63bbd1ad5447fe3 100644
|
| --- a/third_party/WebKit/Source/core/frame/SmartClip.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/SmartClip.cpp
|
| @@ -210,8 +210,9 @@ bool SmartClip::shouldSkipBackgroundImage(Node* node) {
|
| // or a width. On the other hand, if we've got a legit background image,
|
| // it's very likely the height or the width will be set to auto.
|
| LayoutObject* layoutObject = node->layoutObject();
|
| - if (layoutObject && (layoutObject->style()->logicalHeight().isAuto() ||
|
| - layoutObject->style()->logicalWidth().isAuto()))
|
| + if (layoutObject &&
|
| + (layoutObject->style()->logicalHeight().isAuto() ||
|
| + layoutObject->style()->logicalWidth().isAuto()))
|
| return true;
|
|
|
| return false;
|
|
|