Index: third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp |
diff --git a/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp b/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp |
index f07caf2f9a19f75b9df59d540fba95a4c637a645..355ccbb3418b5df22a72abad9644d32e6333260f 100644 |
--- a/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp |
+++ b/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp |
@@ -799,6 +799,8 @@ std::unique_ptr<JSONObject> GraphicsLayer::layerTreeAsJSONInternal(LayerTreeFlag |
paintingPhasesJSON->pushString("GraphicsLayerPaintMask"); |
if (m_paintingPhase & GraphicsLayerPaintChildClippingMask) |
paintingPhasesJSON->pushString("GraphicsLayerPaintChildClippingMask"); |
+ if (m_paintingPhase & GraphicsLayerPaintAncestorClippingMask) |
+ paintingPhasesJSON->pushString("GraphicsLayerPaintAncestorClippingMask"); |
if (m_paintingPhase & GraphicsLayerPaintOverflowContents) |
paintingPhasesJSON->pushString("GraphicsLayerPaintOverflowContents"); |
if (m_paintingPhase & GraphicsLayerPaintCompositedScroll) |