| 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 24ea040e02bc959476adc07ec161cb6e765bfa8a..9014db1f63ec2fe71b16446ee816311b6f130295 100644
|
| --- a/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilderTest.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilderTest.cpp
|
| @@ -3118,6 +3118,7 @@ TEST_P(PaintPropertyTreeBuilderTest,
|
| EXPECT_TRUE(properties->transform());
|
| EXPECT_NE(CompositorElementId(),
|
| properties->transform()->compositorElementId());
|
| + EXPECT_TRUE(properties->transform()->requiresCompositingForAnimation());
|
| }
|
|
|
| TEST_P(PaintPropertyTreeBuilderTest, EffectNodeAnimatedHasCompositorElementId) {
|
| @@ -3125,6 +3126,7 @@ TEST_P(PaintPropertyTreeBuilderTest, EffectNodeAnimatedHasCompositorElementId) {
|
| const ObjectPaintProperties* properties = paintPropertiesForElement("target");
|
| EXPECT_TRUE(properties->effect());
|
| EXPECT_NE(CompositorElementId(), properties->effect()->compositorElementId());
|
| + EXPECT_TRUE(properties->effect()->requiresCompositingForAnimation());
|
| }
|
|
|
| TEST_P(PaintPropertyTreeBuilderTest, FloatUnderInline) {
|
|
|