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

Unified Diff: third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilderTest.cpp

Issue 2831683003: Refactor to centralize code which decides whether ObjectPaintProperties are needed. (Closed)
Patch Set: none Created 3 years, 8 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/paint/PaintPropertyTreeBuilderTest.cpp
diff --git a/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilderTest.cpp b/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilderTest.cpp
index 2f543611be704f9e5d8a70f3031d3bb3661e9cc7..b14582cd1fa6938639fbd405e9e68af9b69c60a0 100644
--- a/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilderTest.cpp
+++ b/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilderTest.cpp
@@ -378,8 +378,7 @@ TEST_P(PaintPropertyTreeBuilderTest, Transform) {
HTMLNames::styleAttr,
"margin-left: 50px; margin-top: 100px; width: 400px; height: 300px;");
GetDocument().View()->UpdateAllLifecyclePhases();
- EXPECT_EQ(nullptr,
- transform->GetLayoutObject()->PaintProperties()->Transform());
+ EXPECT_EQ(nullptr, transform->GetLayoutObject()->PaintProperties());
transform->setAttribute(
HTMLNames::styleAttr,
@@ -479,8 +478,7 @@ TEST_P(PaintPropertyTreeBuilderTest, WillChangeTransform) {
HTMLNames::styleAttr,
"margin-left: 50px; margin-top: 100px; width: 400px; height: 300px;");
GetDocument().View()->UpdateAllLifecyclePhases();
- EXPECT_EQ(nullptr,
- transform->GetLayoutObject()->PaintProperties()->Transform());
+ EXPECT_EQ(nullptr, transform->GetLayoutObject()->PaintProperties());
transform->setAttribute(
HTMLNames::styleAttr,
@@ -1943,8 +1941,8 @@ TEST_P(PaintPropertyTreeBuilderTest, SvgPixelSnappingShouldResetPaintOffset) {
EXPECT_EQ(TransformationMatrix(),
svg_with_transform_properties->Transform()->Matrix());
EXPECT_EQ(LayoutPoint(FloatPoint(0.1, 0)), svg_with_transform.PaintOffset());
- EXPECT_EQ(nullptr,
- svg_with_transform_properties->SvgLocalToBorderBoxTransform());
+ EXPECT_TRUE(svg_with_transform_properties->SvgLocalToBorderBoxTransform() ==
+ nullptr);
LayoutObject& rect_with_transform =
*GetDocument().GetElementById("rect")->GetLayoutObject();
@@ -2335,8 +2333,7 @@ TEST_P(PaintPropertyTreeBuilderTest, CachedProperties) {
EXPECT_EQ(a_properties, a->GetLayoutObject()->PaintProperties());
EXPECT_EQ(a_transform_node, a_properties->Transform());
- EXPECT_EQ(b_properties, b->GetLayoutObject()->PaintProperties());
- EXPECT_EQ(nullptr, b_properties->Transform());
+ EXPECT_EQ(nullptr, b->GetLayoutObject()->PaintProperties());
EXPECT_EQ(c_properties, c->GetLayoutObject()->PaintProperties());
EXPECT_EQ(c_transform_node, c_properties->Transform());
@@ -2358,6 +2355,7 @@ TEST_P(PaintPropertyTreeBuilderTest, CachedProperties) {
EXPECT_EQ(a_properties, a->GetLayoutObject()->PaintProperties());
EXPECT_EQ(a_transform_node, a_properties->Transform());
+ b_properties = b->GetLayoutObject()->PaintProperties();
EXPECT_EQ(b_properties, b->GetLayoutObject()->PaintProperties());
b_transform_node = b_properties->Transform();
EXPECT_EQ(TransformationMatrix().Translate(4, 5), b_transform_node->Matrix());
@@ -3016,6 +3014,18 @@ TEST_P(PaintPropertyTreeBuilderTest,
GetLayoutObjectByElementId("absolute")->Container()->IsLayoutBlock());
}
+TEST_P(PaintPropertyTreeBuilderTest, Reflection) {
+ SetBodyInnerHTML(
+ "<div id='filter' style='-webkit-box-reflect: below; height:1000px;'>"
+ "</div>");
+ const ObjectPaintProperties* filter_properties =
+ GetLayoutObjectByElementId("filter")->PaintProperties();
+ EXPECT_TRUE(filter_properties->Filter()->Parent()->IsRoot());
+ EXPECT_EQ(FrameScrollTranslation(),
+ filter_properties->Filter()->LocalTransformSpace());
+ EXPECT_EQ(FrameContentClip(), filter_properties->Filter()->OutputClip());
+}
+
TEST_P(PaintPropertyTreeBuilderTest, SimpleFilter) {
SetBodyInnerHTML(
"<div id='filter' style='filter:opacity(0.5); height:1000px;'>"

Powered by Google App Engine
This is Rietveld 408576698