Index: third_party/WebKit/Source/core/layout/svg/LayoutSVGHiddenContainer.cpp |
diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGHiddenContainer.cpp b/third_party/WebKit/Source/core/layout/svg/LayoutSVGHiddenContainer.cpp |
index 2ef125d58c5cc581fbaae1c02a6fe7c4cfd4a2d5..d7bf42b25575bebf4c7544d14a6476fbb5ae8dc6 100644 |
--- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGHiddenContainer.cpp |
+++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGHiddenContainer.cpp |
@@ -33,15 +33,13 @@ void LayoutSVGHiddenContainer::layout() |
{ |
ASSERT(needsLayout()); |
LayoutAnalyzer::Scope analyzer(*this); |
- // TODO(fs): In what cases do we need this? |
- bool transformChanged = SVGLayoutSupport::transformToRootChanged(this); |
// When hasRelativeLengths() is false, no descendants have relative lengths |
// (hence no one is interested in viewport size changes). |
bool layoutSizeChanged = element()->hasRelativeLengths() |
&& SVGLayoutSupport::layoutSizeOfNearestViewportChanged(this); |
- SVGLayoutSupport::layoutChildren(firstChild(), selfNeedsLayout(), transformChanged, layoutSizeChanged); |
+ SVGLayoutSupport::layoutChildren(firstChild(), selfNeedsLayout(), false, layoutSizeChanged); |
updateCachedBoundaries(); |
clearNeedsLayout(); |
} |