Index: third_party/WebKit/Source/core/paint/SVGRootInlineBoxPainter.cpp |
diff --git a/third_party/WebKit/Source/core/paint/SVGRootInlineBoxPainter.cpp b/third_party/WebKit/Source/core/paint/SVGRootInlineBoxPainter.cpp |
index a8cca1a59d41dc003d1f0419443039c0188cd51c..208cb1f895118a0fbdb85f1be44fb4eb66316234 100644 |
--- a/third_party/WebKit/Source/core/paint/SVGRootInlineBoxPainter.cpp |
+++ b/third_party/WebKit/Source/core/paint/SVGRootInlineBoxPainter.cpp |
@@ -39,7 +39,7 @@ void SVGRootInlineBoxPainter::paint(const PaintInfo& paintInfo, const LayoutPoin |
SVGPaintContext paintContext(*LineLayoutAPIShim::constLayoutObjectFrom(m_svgRootInlineBox.lineLayoutItem()), paintInfoBeforeFiltering); |
if (paintContext.applyClipMaskAndFilterIfNecessary()) { |
for (InlineBox* child = m_svgRootInlineBox.firstChild(); child; child = child->nextOnLine()) |
- child->paint(paintContext.paintInfo(), paintOffset, 0, 0); |
+ child->paint(paintContext.paintInfo(), paintOffset, LayoutUnit(), LayoutUnit()); |
} |
} |