| Index: Source/core/svg/SVGDocumentExtensions.cpp
|
| diff --git a/Source/core/svg/SVGDocumentExtensions.cpp b/Source/core/svg/SVGDocumentExtensions.cpp
|
| index b8665f61731e5afa1273dd05fe3b8fd7a5e7a7f5..2ee44106420457274663170c88b580db93fe7173 100644
|
| --- a/Source/core/svg/SVGDocumentExtensions.cpp
|
| +++ b/Source/core/svg/SVGDocumentExtensions.cpp
|
| @@ -129,7 +129,7 @@ void SVGDocumentExtensions::dispatchSVGLoadEventToOutermostSVGElements()
|
|
|
| WillBeHeapVector<RefPtrWillBeMember<SVGSVGElement> >::iterator end = timeContainers.end();
|
| for (WillBeHeapVector<RefPtrWillBeMember<SVGSVGElement> >::iterator it = timeContainers.begin(); it != end; ++it) {
|
| - SVGSVGElement* outerSVG = (*it).get();
|
| + SVGSVGElement* outerSVG = it->get();
|
| if (!outerSVG->isOutermostSVGSVGElement())
|
| continue;
|
|
|
|
|