| Index: Source/core/html/HTMLImageElement.cpp
|
| diff --git a/Source/core/html/HTMLImageElement.cpp b/Source/core/html/HTMLImageElement.cpp
|
| index a478b00d85924d81431dacbbcd778d30353579cf..d8b041e2430edce4989d7591ff7d615c311920e9 100644
|
| --- a/Source/core/html/HTMLImageElement.cpp
|
| +++ b/Source/core/html/HTMLImageElement.cpp
|
| @@ -380,7 +380,7 @@ Node::InsertionNotificationRequest HTMLImageElement::insertedInto(ContainerNode*
|
| }
|
| }
|
|
|
| - // If we have been inserted from a renderer-less document,
|
| + // If we have been inserted from a layoutObject-less document,
|
| // our loader may have not fetched the image, so do it now.
|
| if ((insertionPoint->inDocument() && !imageLoader().image()) || imageWasModified)
|
| imageLoader().updateFromElement(ImageLoader::UpdateNormal);
|
| @@ -593,7 +593,7 @@ PassRefPtr<Image> HTMLImageElement::getSourceImageForCanvas(SourceImageMode, Sou
|
|
|
| RefPtr<Image> sourceImage = cachedImage()->imageForLayoutObject(layoutObject());
|
|
|
| - // We need to synthesize a container size if a renderer is not available to provide one.
|
| + // We need to synthesize a container size if a layoutObject is not available to provide one.
|
| if (!layoutObject() && sourceImage->usesContainerSize())
|
| sourceImage->setContainerSize(sourceImage->size());
|
|
|
|
|