Index: Source/core/inspector/InspectorLayerTreeAgent.cpp |
diff --git a/Source/core/inspector/InspectorLayerTreeAgent.cpp b/Source/core/inspector/InspectorLayerTreeAgent.cpp |
index 5f92bb00c0a388cb801749706bab4ac37880d091..8ef698dd27afd42e1e2ddbf7d86c73491c036f09 100644 |
--- a/Source/core/inspector/InspectorLayerTreeAgent.cpp |
+++ b/Source/core/inspector/InspectorLayerTreeAgent.cpp |
@@ -183,7 +183,7 @@ void InspectorLayerTreeAgent::getLayers(ErrorString* errorString, const int* nod |
void InspectorLayerTreeAgent::buildLayerIdToNodeIdMap(ErrorString* errorString, RenderLayer* root, LayerIdToNodeIdMap& layerIdToNodeIdMap) |
{ |
- if (root->isComposited()) { |
+ if (root->compositingState() == PaintsIntoOwnBacking || root->compositingState() == HasOwnBackingButPaintsIntoAncestor) { |
if (Node* node = root->renderer()->generatingNode()) { |
GraphicsLayer* graphicsLayer = root->backing()->childForSuperlayers(); |
layerIdToNodeIdMap.set(graphicsLayer->platformLayer()->id(), idForNode(errorString, node)); |