| Index: third_party/WebKit/Source/core/dom/DocumentLifecycle.h
|
| diff --git a/third_party/WebKit/Source/core/dom/DocumentLifecycle.h b/third_party/WebKit/Source/core/dom/DocumentLifecycle.h
|
| index fe0f1e7f228b976c13d33953e4316decde938631..62b979c843726652d798571d13a91c8ae0d0f010 100644
|
| --- a/third_party/WebKit/Source/core/dom/DocumentLifecycle.h
|
| +++ b/third_party/WebKit/Source/core/dom/DocumentLifecycle.h
|
| @@ -67,6 +67,7 @@ class CORE_EXPORT DocumentLifecycle {
|
| kLayoutClean,
|
|
|
| kInCompositingUpdate,
|
| + kCompositingInputsClean,
|
| kCompositingClean,
|
|
|
| kInPaintInvalidation,
|
| @@ -245,9 +246,9 @@ inline bool DocumentLifecycle::StateAllowsDetach() const {
|
| return state_ == kVisualUpdatePending || state_ == kInStyleRecalc ||
|
| state_ == kStyleClean || state_ == kLayoutSubtreeChangeClean ||
|
| state_ == kInPreLayout || state_ == kLayoutClean ||
|
| - state_ == kCompositingClean || state_ == kPaintInvalidationClean ||
|
| - state_ == kPrePaintClean || state_ == kPaintClean ||
|
| - state_ == kStopping;
|
| + state_ == kCompositingInputsClean || state_ == kCompositingClean ||
|
| + state_ == kPaintInvalidationClean || state_ == kPrePaintClean ||
|
| + state_ == kPaintClean || state_ == kStopping;
|
| }
|
|
|
| inline bool DocumentLifecycle::StateAllowsLayoutInvalidation() const {
|
|
|