| Index: third_party/WebKit/Source/core/dom/Node.h
|
| diff --git a/third_party/WebKit/Source/core/dom/Node.h b/third_party/WebKit/Source/core/dom/Node.h
|
| index a86e928aed6d3734fade84b1cb8c89ae806027f3..0188a6ad129d56cd89cd3795064c6e008af35f46 100644
|
| --- a/third_party/WebKit/Source/core/dom/Node.h
|
| +++ b/third_party/WebKit/Source/core/dom/Node.h
|
| @@ -700,10 +700,13 @@ private:
|
| V0CustomElementFlag = 1 << 28,
|
| V0CustomElementUpgradedFlag = 1 << 29,
|
|
|
| + NeedsReattachLayoutTree = 1 << 30,
|
| + ChildNeedsReattachLayoutTree = 1 << 31,
|
| +
|
| DefaultNodeFlags = IsFinishedParsingChildrenFlag | NeedsReattachStyleChange
|
| };
|
|
|
| - // 3 bits remaining.
|
| + // 0 bits remaining.
|
|
|
| bool getFlag(NodeFlags mask) const { return m_nodeFlags & mask; }
|
| void setFlag(bool f, NodeFlags mask) { m_nodeFlags = (m_nodeFlags & ~mask) | (-(int32_t)f & mask); }
|
|
|