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 1d2d02f145e2501e972229b90845e9b0aca11528..eeeea48a61e7f801467ddb4c2d1e18fefab8db7e 100644 |
--- a/third_party/WebKit/Source/core/dom/Node.h |
+++ b/third_party/WebKit/Source/core/dom/Node.h |
@@ -841,7 +841,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) |