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

Unified Diff: third_party/WebKit/Source/platform/graphics/CompositingReasons.cpp

Issue 2754983002: Composite sticky-positioned elements when they have composited descendants (Closed)
Patch Set: Switch to using backface-visibility over will-change Created 3 years, 9 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/platform/graphics/CompositingReasons.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/CompositingReasons.cpp b/third_party/WebKit/Source/platform/graphics/CompositingReasons.cpp
index d7916a674b5df781146edc21a4354471673abdc6..018d65cd1804d1934b2975942c1f95bee03dba88 100644
--- a/third_party/WebKit/Source/platform/graphics/CompositingReasons.cpp
+++ b/third_party/WebKit/Source/platform/graphics/CompositingReasons.cpp
@@ -88,9 +88,10 @@ const CompositingReasonStringMap kCompositingReasonStringMap[] = {
{CompositingReasonIsolateCompositedDescendants,
"isolateCompositedDescendants",
"Should isolate descendants to apply a blend effect"},
- {CompositingReasonPositionFixedWithCompositedDescendants,
- "positionFixedWithCompositedDescendants"
- "Is a position:fixed element with composited descendants"},
+ {CompositingReasonPositionFixedOrStickyWithCompositedDescendants,
+ "positionFixedOrStickyWithCompositedDescendants"
+ "Is a position:fixed or position:sticky element with composited "
+ "descendants"},
{CompositingReasonRoot, "root", "Is the root layer"},
{CompositingReasonLayerForAncestorClip, "layerForAncestorClip",
"Secondary layer, applies a clip due to a sibling in the compositing "

Powered by Google App Engine
This is Rietveld 408576698