| Index: third_party/WebKit/Source/core/paint/PaintControllerPaintTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/PaintControllerPaintTest.cpp b/third_party/WebKit/Source/core/paint/PaintControllerPaintTest.cpp
|
| index 8bb3ea12991bb8cd19a38bda495a93b2b069a549..018acd1953f2bd04365bda3a9bc14e14918f4fe2 100644
|
| --- a/third_party/WebKit/Source/core/paint/PaintControllerPaintTest.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/PaintControllerPaintTest.cpp
|
| @@ -227,8 +227,10 @@ TEST_P(PaintControllerPaintTestForSlimmingPaintV2, ChunkIdClientCacheFlag) {
|
| DisplayItem::kClipFrameToVisibleContentRect)));
|
| }
|
|
|
| + // Verify that the background does not scroll.
|
| const PaintChunk& backgroundChunk = rootPaintController().paintChunks()[0];
|
| - EXPECT_TRUE(backgroundChunk.properties.propertyTreeState.scroll()->isRoot());
|
| + EXPECT_FALSE(backgroundChunk.properties.propertyTreeState.transform()
|
| + ->isScrollTranslation());
|
|
|
| const EffectPaintPropertyNode* effectNode = div.paintProperties()->effect();
|
| EXPECT_EQ(0.5f, effectNode->opacity());
|
|
|