summaryrefslogtreecommitdiff
path: root/Source/WebCore/html/HTMLImageElement.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/html/HTMLImageElement.h')
-rw-r--r--Source/WebCore/html/HTMLImageElement.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/WebCore/html/HTMLImageElement.h b/Source/WebCore/html/HTMLImageElement.h
index 4657d7cd5..9468a7958 100644
--- a/Source/WebCore/html/HTMLImageElement.h
+++ b/Source/WebCore/html/HTMLImageElement.h
@@ -83,9 +83,7 @@ public:
bool complete() const;
- // FIXME: Why do we have two names for the same thing?
- bool hasPendingLoadEvent() const { return m_imageLoader.hasPendingLoadEvent(); }
- bool hasPendingActivity() const { return m_imageLoader.hasPendingLoadEvent(); }
+ bool hasPendingActivity() const { return m_imageLoader.hasPendingActivity(); }
virtual bool canContainRangeEndPoint() const { return false; }
@@ -99,6 +97,8 @@ protected:
private:
virtual void createShadowSubtree();
+ virtual bool areAuthorShadowsAllowed() const OVERRIDE { return false; }
+
// Implementation of ImageLoaderClient
Element* sourceElement() { return this; }
Element* imageElement();