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 a3f8ef6d7178ab3cc3fef910916d7a6ead739df0..ca8861b64c9154ff732cbba63e21091a23b793b2 100644 |
--- a/third_party/WebKit/Source/core/dom/Node.h |
+++ b/third_party/WebKit/Source/core/dom/Node.h |
@@ -870,7 +870,7 @@ inline void Node::lazyReattachIfAttached() |
inline bool Node::shouldCallRecalcStyle(StyleRecalcChange change) |
{ |
- return change >= Inherit || needsStyleRecalc() || childNeedsStyleRecalc(); |
+ return change >= IndependentInherit || needsStyleRecalc() || childNeedsStyleRecalc(); |
} |
inline bool isTreeScopeRoot(const Node* node) |