| Index: third_party/WebKit/Source/core/layout/svg/SVGLayoutSupport.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/svg/SVGLayoutSupport.cpp b/third_party/WebKit/Source/core/layout/svg/SVGLayoutSupport.cpp
|
| index aee79b58225a7beefe0e802dff0376012e80571c..08b155564567a8716bc1c0b2f7617bea4c9cd4de 100644
|
| --- a/third_party/WebKit/Source/core/layout/svg/SVGLayoutSupport.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/svg/SVGLayoutSupport.cpp
|
| @@ -271,9 +271,9 @@ bool SVGLayoutSupport::transformToRootChanged(const LayoutObject* ancestor)
|
| return false;
|
| }
|
|
|
| -void SVGLayoutSupport::layoutChildren(LayoutObject* start, bool forceLayout, bool transformChanged, bool layoutSizeChanged)
|
| +void SVGLayoutSupport::layoutChildren(LayoutObject* firstChild, bool forceLayout, bool transformChanged, bool layoutSizeChanged)
|
| {
|
| - for (LayoutObject* child = start->slowFirstChild(); child; child = child->nextSibling()) {
|
| + for (LayoutObject* child = firstChild; child; child = child->nextSibling()) {
|
| bool forceChildLayout = forceLayout;
|
|
|
| if (transformChanged) {
|
|
|