diff options
Diffstat (limited to 'WebCore/html/HTMLParamElement.h')
-rw-r--r-- | WebCore/html/HTMLParamElement.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/WebCore/html/HTMLParamElement.h b/WebCore/html/HTMLParamElement.h index a787927..f13f8fa 100644 --- a/WebCore/html/HTMLParamElement.h +++ b/WebCore/html/HTMLParamElement.h @@ -37,20 +37,18 @@ public: private: HTMLParamElement(const QualifiedName&, Document*); - virtual HTMLTagStatus endTagRequirement() const { return TagStatusForbidden; } - virtual int tagPriority() const { return 0; } - virtual void parseMappedAttribute(Attribute*); virtual bool isURLAttribute(Attribute*) const; virtual void addSubresourceAttributeURLs(ListHashSet<KURL>&) const; + // FIXME: These don't need to be stored as members and instead + // name() value() could use getAttribute(nameAttr/valueAttr). AtomicString m_name; AtomicString m_value; }; - -} +} // namespace WebCore #endif |