| Index: third_party/WebKit/Source/core/layout/LayoutObject.h
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.h b/third_party/WebKit/Source/core/layout/LayoutObject.h
|
| index ae73f789eaf6bdcb3f8b59e707ca20cd4de99fbd..ed012d54e7600d68b8740770516a490e2306352e 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutObject.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutObject.h
|
| @@ -962,7 +962,7 @@ public:
|
|
|
| bool canContainFixedPositionObjects() const
|
| {
|
| - return isLayoutView() || (hasTransformRelatedProperty() && isLayoutBlock()) || isSVGForeignObject() || style()->containsPaint();
|
| + return isLayoutView() || ((hasTransformRelatedProperty() || style()->containsPaint()) && isLayoutBlock()) || isSVGForeignObject();
|
| }
|
|
|
| // Convert the given local point to absolute coordinates
|
|
|