| Index: Source/core/rendering/RenderObject.h
|
| diff --git a/Source/core/rendering/RenderObject.h b/Source/core/rendering/RenderObject.h
|
| index 579d0067ccf0c72776770269ab2e7ba50542e070..461142583b45f898a8ecf593e9f73cd4ae79ffbf 100644
|
| --- a/Source/core/rendering/RenderObject.h
|
| +++ b/Source/core/rendering/RenderObject.h
|
| @@ -525,6 +525,8 @@ public:
|
| bool hasBackground() const { return style()->hasBackground(); }
|
| bool hasEntirelyFixedBackground() const;
|
|
|
| + bool needsLayoutBecauseOfChildren() const { return needsLayout() && !selfNeedsLayout() && !needsPositionedMovementLayout() && !needsSimplifiedNormalFlowLayout(); }
|
| +
|
| bool needsLayout() const
|
| {
|
| return m_bitfields.selfNeedsLayout() || m_bitfields.normalChildNeedsLayout() || m_bitfields.posChildNeedsLayout()
|
|
|