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

Unified Diff: Source/core/rendering/compositing/CompositingReasonFinder.cpp

Issue 309743002: Move computation of RenderLayer::isUnclippedDescendant into CompositingPropertyUpdater (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: polish Created 6 years, 7 months 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: Source/core/rendering/compositing/CompositingReasonFinder.cpp
diff --git a/Source/core/rendering/compositing/CompositingReasonFinder.cpp b/Source/core/rendering/compositing/CompositingReasonFinder.cpp
index 8f2bda03a963d6e6c4649a077ae32130dd4ce6f5..39d61ced21e13752d5a20dea06871575496e83b9 100644
--- a/Source/core/rendering/compositing/CompositingReasonFinder.cpp
+++ b/Source/core/rendering/compositing/CompositingReasonFinder.cpp
@@ -142,7 +142,7 @@ CompositingReasons CompositingReasonFinder::nonStyleDeterminedDirectReasons(cons
RenderObject* renderer = layer->renderer();
if (hasOverflowScrollTrigger()) {
- if (layer->isUnclippedDescendant())
+ if (layer->ancestorDependentProperties().isUnclippedDescendant)
directReasons |= CompositingReasonOutOfFlowClipping;
if (layer->scrollParent())

Powered by Google App Engine
This is Rietveld 408576698