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 77c1ff754fa52b8dde5fb53b5f0e6b9aba9f81f8..2cd2bce2cb1952ecff8b3e92e925edeb6a6392de 100644 |
--- a/third_party/WebKit/Source/core/dom/Node.h |
+++ b/third_party/WebKit/Source/core/dom/Node.h |
@@ -837,7 +837,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) |