| Index: Source/core/dom/DocumentLifecycle.h
|
| diff --git a/Source/core/dom/DocumentLifecycle.h b/Source/core/dom/DocumentLifecycle.h
|
| index 2272191d7c540d6fe83769a188d184c7c0162e8a..7a619361217c2ec2aea2c261d8c936573518459d 100644
|
| --- a/Source/core/dom/DocumentLifecycle.h
|
| +++ b/Source/core/dom/DocumentLifecycle.h
|
| @@ -58,6 +58,9 @@ public:
|
| InCompositingUpdate,
|
| CompositingClean,
|
|
|
| + InPaintInvalidation,
|
| + PaintInvalidationClean,
|
| +
|
| // Once the document starts shuting down, we cannot return
|
| // to the style/layout/rendering states.
|
| Stopping,
|
| @@ -163,6 +166,7 @@ inline bool DocumentLifecycle::stateAllowsDetach() const
|
| || m_state == InPreLayout
|
| || m_state == LayoutClean
|
| || m_state == CompositingClean
|
| + || m_state == PaintInvalidationClean
|
| || m_state == Stopping;
|
| }
|
|
|
|
|