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

Unified Diff: third_party/WebKit/Source/core/style/StyleRareNonInheritedData.h

Issue 2047283002: Avoid touching z-index in StyleAdjuster by using an isStackingContext flag instead (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update comments Created 4 years, 5 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/style/StyleRareNonInheritedData.h
diff --git a/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.h b/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.h
index bf7cb2d6dc606398462c8afca1708d48543b5e28..98fd28f438372cf759e6c1476c4bfcb60b59996b 100644
--- a/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.h
+++ b/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.h
@@ -183,6 +183,8 @@ public:
unsigned m_runningFilterAnimationOnCompositor : 1;
unsigned m_runningBackdropFilterAnimationOnCompositor : 1;
+ unsigned m_isStackingContext : 1;
+
unsigned m_effectiveBlendMode: 5; // EBlendMode
unsigned m_touchAction : TouchActionBits; // TouchAction

Powered by Google App Engine
This is Rietveld 408576698