| Index: third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp b/third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp
|
| index 19a9d3097bc78d4d4d5f7c88edeca82dd2d79c47..da338ace574695a6fdd5082ec93bcb9e521b176b 100644
|
| --- a/third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp
|
| @@ -227,7 +227,7 @@ PassOwnPtr<GraphicsLayer> CompositedLayerMapping::createGraphicsLayer(Compositin
|
|
|
| void CompositedLayerMapping::createPrimaryGraphicsLayer()
|
| {
|
| - m_graphicsLayer = createGraphicsLayer(m_owningLayer.getCompositingReasons(), m_owningLayer.squashingDisallowedReasons());
|
| + m_graphicsLayer = createGraphicsLayer(m_owningLayer.getCompositingReasons(), m_owningLayer.getSquashingDisallowedReasons());
|
|
|
| updateOpacity(layoutObject()->styleRef());
|
| updateTransform(layoutObject()->styleRef());
|
| @@ -347,7 +347,7 @@ void CompositedLayerMapping::updateCompositingReasons()
|
| // All other layers owned by this mapping will have the same compositing reason
|
| // for their lifetime, so they are initialized only when created.
|
| m_graphicsLayer->setCompositingReasons(m_owningLayer.getCompositingReasons());
|
| - m_graphicsLayer->setSquashingDisallowedReasons(m_owningLayer.squashingDisallowedReasons());
|
| + m_graphicsLayer->setSquashingDisallowedReasons(m_owningLayer.getSquashingDisallowedReasons());
|
| }
|
|
|
| bool CompositedLayerMapping::owningLayerClippedByLayerNotAboveCompositedAncestor(const PaintLayer* scrollParent)
|
|
|