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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutBox.cpp

Issue 2588853002: Fix border radius on composited children. (Closed)
Patch Set: SPV2 expectations Created 3 years, 11 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: third_party/WebKit/Source/core/layout/LayoutBox.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutBox.cpp b/third_party/WebKit/Source/core/layout/LayoutBox.cpp
index 561439aa9dfa64592c5f8fa0ca120a491e05caab..b9fc52f1614e8e8d8ba7aec0de6906023f0fa481 100644
--- a/third_party/WebKit/Source/core/layout/LayoutBox.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutBox.cpp
@@ -2277,6 +2277,13 @@ bool LayoutBox::paintedOutputOfObjectHasNoEffectRegardlessOfSize() const {
return false;
}
+ // If the box paints into its own backing, we can assume that it's painting
+ // may have some effect. For example, honoring the border-radius clip on
+ // a composited child paints into a mask for an otherwise non-painting
+ // element, because children of that element will require the mask.
+ if (hasLayer() && layer()->compositingState() == PaintsIntoOwnBacking)
+ return false;
+
return true;
}

Powered by Google App Engine
This is Rietveld 408576698