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 4e1053ee3d1a7108222689c7fb45bb0ec4c51d73..898bf2d20dbaee493c9d64c0b1cc61c4a15eb94f 100644 |
--- a/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp |
+++ b/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp |
@@ -717,6 +717,8 @@ std::unique_ptr<JSONObject> GraphicsLayer::layerAsJSONInternal( |
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) |