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

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

Issue 2439113003: Fix the bug that negative outline-offset is covered up by composited (Closed)
Patch Set: fix outline not painting problem when scrollingcontents is set to false Created 4 years, 2 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.h
diff --git a/third_party/WebKit/Source/platform/graphics/CompositingReasons.h b/third_party/WebKit/Source/platform/graphics/CompositingReasons.h
index 0513a7340904ea3c18e5d345c95d47a1bfab3bc3..e45fea06b57191dee26d64c5e16e11abdfb46fd4 100644
--- a/third_party/WebKit/Source/platform/graphics/CompositingReasons.h
+++ b/third_party/WebKit/Source/platform/graphics/CompositingReasons.h
@@ -93,6 +93,9 @@ const uint64_t CompositingReasonInlineTransform = UINT64_C(1) << 48;
const uint64_t CompositingReasonCompositorProxy = UINT64_C(1) << 49;
+// Composited layer painted on top of all other layers as decoration
+const uint64_t CompositingReasonLayerForDecoration = UINT64_C(1) << 50;
flackr 2016/10/24 17:19:30 We don't need to add a compositing reason for this
yigu 2016/10/24 20:31:36 Will add a compositing reason as discussed.
+
// Various combinations of compositing reasons are defined here also, for more
// intutive and faster bitwise logic.
const uint64_t CompositingReasonComboAllDirectReasons =

Powered by Google App Engine
This is Rietveld 408576698