| Index: third_party/WebKit/Source/core/paint/PaintLayerPainter.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/PaintLayerPainter.cpp b/third_party/WebKit/Source/core/paint/PaintLayerPainter.cpp
|
| index aa63b15fee9840d7b799655f02dc440f1be828e7..8165be07c17c0a1bc1d635920683fca0955c750e 100644
|
| --- a/third_party/WebKit/Source/core/paint/PaintLayerPainter.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/PaintLayerPainter.cpp
|
| @@ -76,10 +76,7 @@ bool PaintLayerPainter::paintedOutputInvisible(
|
|
|
| const EffectPaintPropertyNode* effect =
|
| layoutObject.paintProperties()->effect();
|
| - const TransformPaintPropertyNode* transform =
|
| - layoutObject.paintProperties()->transform();
|
| - if ((effect && effect->requiresCompositingForAnimation()) ||
|
| - (transform && transform->requiresCompositingForAnimation())) {
|
| + if (effect && effect->requiresCompositingForAnimation()) {
|
| return false;
|
| }
|
| }
|
|
|