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

Unified Diff: third_party/WebKit/Source/devtools/front_end/timeline/LayerDetailsView.js

Issue 2251303003: Implement position: sticky updates on compositor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge with master and add comments to WebLayerStickyPositionConstraint members. Created 4 years, 3 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/devtools/front_end/timeline/LayerDetailsView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/LayerDetailsView.js b/third_party/WebKit/Source/devtools/front_end/timeline/LayerDetailsView.js
index 66d95ed7df433fcbe6bcaefa37b93defad637960..2d995800950d2c227410f7030230ee3115554456 100644
--- a/third_party/WebKit/Source/devtools/front_end/timeline/LayerDetailsView.js
+++ b/third_party/WebKit/Source/devtools/front_end/timeline/LayerDetailsView.js
@@ -64,9 +64,7 @@ WebInspector.LayerDetailsView.CompositingReasonDetail = {
"backfaceVisibilityHidden": WebInspector.UIString("Composition due to association with an element with a \"backface-visibility: hidden\" style."),
"animation": WebInspector.UIString("Composition due to association with an animated element."),
"filters": WebInspector.UIString("Composition due to association with an element with CSS filters applied."),
- "positionFixed": WebInspector.UIString("Composition due to association with an element with a \"position: fixed\" style."),
- // FIXME: Can we remove this entry now that position: sticky has been removed?
- "positionSticky": WebInspector.UIString("Composition due to association with an element with a \"position: sticky\" style."),
+ "scrollDependentPosition": WebInspector.UIString("Composition due to association with an element with a \"position: fixed\" or \"position: sticky\" style."),
"overflowScrollingTouch": WebInspector.UIString("Composition due to association with an element with a \"overflow-scrolling: touch\" style."),
"blending": WebInspector.UIString("Composition due to association with an element that has blend mode other than \"normal\"."),
"assumedOverlap": WebInspector.UIString("Composition due to association with an element that may overlap other composited elements."),

Powered by Google App Engine
This is Rietveld 408576698