Index: third_party/WebKit/Source/core/dom/NodeComputedStyle.h |
diff --git a/third_party/WebKit/Source/core/dom/NodeComputedStyle.h b/third_party/WebKit/Source/core/dom/NodeComputedStyle.h |
index 1c7f1d70f53c78281667be0cc204c8d9b086d409..b4bca984fe5fca9dd1553c8fbd72c2cf729e6ddc 100644 |
--- a/third_party/WebKit/Source/core/dom/NodeComputedStyle.h |
+++ b/third_party/WebKit/Source/core/dom/NodeComputedStyle.h |
@@ -53,7 +53,7 @@ inline ComputedStyle* Node::mutableComputedStyle() const |
inline const ComputedStyle* Node::parentComputedStyle() const |
{ |
- if (isActiveInsertionPoint(*this)) |
+ if (isSlotOrActiveInsertionPoint()) |
return 0; |
ContainerNode* parent = LayoutTreeBuilderTraversal::parent(*this); |
return parent ? parent->computedStyle() : 0; |