| Index: Source/core/rendering/RenderObject.h
|
| diff --git a/Source/core/rendering/RenderObject.h b/Source/core/rendering/RenderObject.h
|
| index 09d4353eba19c5578e6bb64d3a1c4f19bb429ce3..dc6a2f2cb7e76bc5130993002823368e9baeb06d 100644
|
| --- a/Source/core/rendering/RenderObject.h
|
| +++ b/Source/core/rendering/RenderObject.h
|
| @@ -1015,9 +1015,10 @@ public:
|
| void setLayoutDidGetCalled(bool b) { m_bitfields.setLayoutDidGetCalled(b); }
|
|
|
| bool mayNeedInvalidation() { return m_bitfields.mayNeedInvalidation(); }
|
| + void setMayNeedInvalidationNonRecursive(bool b) { m_bitfields.setMayNeedInvalidation(b); }
|
| void setMayNeedInvalidation(bool b)
|
| {
|
| - m_bitfields.setMayNeedInvalidation(b);
|
| + setMayNeedInvalidationNonRecursive(b);
|
|
|
| // Make sure our parent is marked as needing invalidation.
|
| if (b && parent() && !parent()->mayNeedInvalidation())
|
|
|