| Index: Source/core/rendering/RenderTreeAsText.cpp
|
| diff --git a/Source/core/rendering/RenderTreeAsText.cpp b/Source/core/rendering/RenderTreeAsText.cpp
|
| index a88b280ebd1443ec3fc6d5ac413b204554d762f3..c1efe45af2a055bb322fd40dfaf5411458a0ba5c 100644
|
| --- a/Source/core/rendering/RenderTreeAsText.cpp
|
| +++ b/Source/core/rendering/RenderTreeAsText.cpp
|
| @@ -552,11 +552,11 @@ static void write(TextStream& ts, RenderLayer& l,
|
| ts << " blendMode: " << compositeOperatorName(CompositeSourceOver, l.renderer()->style()->blendMode());
|
|
|
| if (behavior & RenderAsTextShowCompositedLayers) {
|
| - if (l.hasCompositedLayerMapping()) {
|
| + if (CompositedLayerMapping* compositedLayerMapping = l.compositedLayerMapping()) {
|
| ts << " (composited, bounds="
|
| - << l.compositedLayerMapping()->compositedBounds()
|
| + << compositedLayerMapping->compositedBounds()
|
| << ", drawsContent="
|
| - << l.compositedLayerMapping()->mainGraphicsLayer()->drawsContent()
|
| + << compositedLayerMapping->mainGraphicsLayer()->drawsContent()
|
| << (l.shouldIsolateCompositedDescendants() ? ", isolatesCompositedBlending" : "")
|
| << ")";
|
| }
|
|
|