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

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

Issue 2714283002: Fix unexpected blurry text caused by combination of skew and promotion (Closed)
Patch Set: Layout test update && bug fix 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..8e624b7e03720458cf86a5c30ee96056dd9ccec1 100644
--- a/third_party/WebKit/Source/platform/graphics/CompositingReasons.cpp
+++ b/third_party/WebKit/Source/platform/graphics/CompositingReasons.cpp
@@ -141,6 +141,10 @@ const CompositingReasonStringMap kCompositingReasonStringMap[] = {
{CompositingReasonInlineTransform, "inlineTransform",
"Has an inline transform, which causes subsequent layers to assume "
"overlap"},
+ {CompositingReasonSkewWithCompositedSkewedAncestor,
+ "layerForSkewWithCompositedSkewedAncestor",
+ "Has skewed text in promoted skewed ancestor which causes blurriness "
+ "without separately compositing"},
};
const size_t kNumberOfCompositingReasons =

Powered by Google App Engine
This is Rietveld 408576698