| 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 dfcc4030024fa446a91108c108c02a03e2dad221..f2e106bf825a08e3a09db0ab7131ffb9d3746b90 100644
|
| --- a/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilderTest.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilderTest.cpp
|
| @@ -83,12 +83,14 @@ void PaintPropertyTreeBuilderTest::TearDown() {
|
| source.moveBy((sourceLayoutObject)->paintOffset()); \
|
| const auto& contentsProperties = \
|
| *(ancestorLayoutObject)->paintProperties()->contentsProperties(); \
|
| - LayoutRect actual = \
|
| - LayoutRect(geometryMapper.sourceToDestinationVisualRect( \
|
| - FloatRect(source), *(sourceLayoutObject) \
|
| - ->paintProperties() \
|
| - ->localBorderBoxProperties(), \
|
| - contentsProperties)); \
|
| + LayoutRect actual = LayoutRect( \
|
| + geometryMapper \
|
| + .sourceToDestinationVisualRect(FloatRect(source), \
|
| + *(sourceLayoutObject) \
|
| + ->paintProperties() \
|
| + ->localBorderBoxProperties(), \
|
| + contentsProperties) \
|
| + .rect()); \
|
| actual.moveBy(-(ancestorLayoutObject)->paintOffset()); \
|
| EXPECT_EQ(expected, actual) \
|
| << "GeometryMapper: expected: " << expected.toString() \
|
|
|