Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(166)

Unified Diff: third_party/WebKit/Source/core/dom/NodeComputedStyle.h

Issue 2460813002: Make slots in non-shadow trees participate in a flat tree (Closed)
Patch Set: update expectation Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 8ba226ca765bf86c36cae8d95a18a37742c764de..f8edd26d5c8e59c7f504fbd184c4695915461c53 100644
--- a/third_party/WebKit/Source/core/dom/NodeComputedStyle.h
+++ b/third_party/WebKit/Source/core/dom/NodeComputedStyle.h
@@ -51,7 +51,7 @@ inline ComputedStyle* Node::mutableComputedStyle() const {
}
inline const ComputedStyle* Node::parentComputedStyle() const {
- if (isSlotOrActiveInsertionPoint())
+ if (isActiveSlotOrActiveInsertionPoint())
return 0;
ContainerNode* parent = LayoutTreeBuilderTraversal::parent(*this);
return parent ? parent->computedStyle() : 0;
« no previous file with comments | « third_party/WebKit/Source/core/dom/Node.cpp ('k') | third_party/WebKit/Source/core/dom/shadow/DistributedNodes.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698