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