* html/HTMLImageElement.cpp:
(WebCore::HTMLImageElement::insertedInto):
(WebCore::HTMLImageElement::removedFrom):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@156929
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2013-10-04 Ryosuke Niwa <rniwa@webkit.org>
+
+ Build fix after r156925. It collided with r156903.
+
+ * html/HTMLImageElement.cpp:
+ (WebCore::HTMLImageElement::insertedInto):
+ (WebCore::HTMLImageElement::removedFrom):
+
2013-10-04 Andreas Kling <akling@apple.com>
Clean out some FrameLoaderClient hooks that no ports were using.
m_form->registerImgElement(this);
}
- if (insertionPoint->inDocument() && !m_lowercasedUsemap.isNull())
+ if (insertionPoint.inDocument() && !m_lowercasedUsemap.isNull())
document().addImageElementByLowercasedUsemap(m_lowercasedUsemap, *this);
// If we have been inserted from a renderer-less document,
if (m_form)
m_form->removeImgElement(this);
- if (insertionPoint->inDocument() && !m_lowercasedUsemap.isNull())
+ if (insertionPoint.inDocument() && !m_lowercasedUsemap.isNull())
document().removeImageElementByLowercasedUsemap(m_lowercasedUsemap, *this);
m_form = 0;