| Index: third_party/WebKit/Source/core/svg/SVGImageElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGImageElement.cpp b/third_party/WebKit/Source/core/svg/SVGImageElement.cpp
|
| index 2d08ea45901a6a8c319d4fc30fcea7b63f4bcf52..715195dda8657a60e03048db9a85a4ff67fa8a41 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGImageElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGImageElement.cpp
|
| @@ -194,14 +194,15 @@ Node::InsertionNotificationRequest SVGImageElement::insertedInto(
|
| if (!rootParent->isConnected())
|
| return InsertionDone;
|
|
|
| - // We can only resolve base URIs properly after tree insertion - hence, URI mutations while
|
| - // detached are deferred until this point.
|
| + // We can only resolve base URIs properly after tree insertion - hence, URI
|
| + // mutations while detached are deferred until this point.
|
| if (m_needsLoaderURIUpdate) {
|
| imageLoader().updateFromElement(ImageLoader::UpdateIgnorePreviousError);
|
| m_needsLoaderURIUpdate = false;
|
| } else {
|
| - // A previous loader update may have failed to actually fetch the image if the document
|
| - // was inactive. In that case, force a re-update (but don't clear previous errors).
|
| + // A previous loader update may have failed to actually fetch the image if
|
| + // the document was inactive. In that case, force a re-update (but don't
|
| + // clear previous errors).
|
| if (!imageLoader().image())
|
| imageLoader().updateFromElement();
|
| }
|
|
|