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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutGeometryMapStep.h

Issue 2173963002: Ensure that we consistently check contains: paint for fixed position containment. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove trailing whitespace 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/layout/LayoutGeometryMapStep.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutGeometryMapStep.h b/third_party/WebKit/Source/core/layout/LayoutGeometryMapStep.h
index 4f60d3312fe26f9b3cce310db8ea2554a730e6b6..b7a4dee1a964b946ab852ddc42156bd18b1153de 100644
--- a/third_party/WebKit/Source/core/layout/LayoutGeometryMapStep.h
+++ b/third_party/WebKit/Source/core/layout/LayoutGeometryMapStep.h
@@ -40,7 +40,7 @@ enum GeometryInfoFlag {
AccumulatingTransform = 1 << 0,
IsNonUniform = 1 << 1, // Mapping depends on the input point, e.g. because of CSS columns.
IsFixedPosition = 1 << 2,
- HasTransform = 1 << 3,
+ ContainsFixedPosition = 1 << 3,
};
typedef unsigned GeometryInfoFlags;

Powered by Google App Engine
This is Rietveld 408576698