| Index: Source/core/svg/SVGElement.cpp
|
| diff --git a/Source/core/svg/SVGElement.cpp b/Source/core/svg/SVGElement.cpp
|
| index 91a3bf7e4634efa3bfee4a9eb52da6c6822508cf..b89fc02cf0af80cf7ba362e2614ae61e2535eb90 100644
|
| --- a/Source/core/svg/SVGElement.cpp
|
| +++ b/Source/core/svg/SVGElement.cpp
|
| @@ -265,7 +265,7 @@ String SVGElement::title() const
|
| // If we aren't an instance in a <use> or the <use> title was not found, then find the first
|
| // <title> child of this element.
|
| Element* titleElement = ElementTraversal::firstWithin(this);
|
| - for (; titleElement; titleElement = ElementTraversal::nextSkippingChildren(titleElement, this)) {
|
| + for (; titleElement; titleElement = ElementTraversal::nextSkippingChildren(*titleElement, this)) {
|
| if (titleElement->hasTagName(SVGNames::titleTag) && titleElement->isSVGElement())
|
| break;
|
| }
|
|
|