summaryrefslogtreecommitdiff
path: root/Source/WebCore/html/HTMLTableCaptionElement.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/html/HTMLTableCaptionElement.h')
-rw-r--r--Source/WebCore/html/HTMLTableCaptionElement.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/WebCore/html/HTMLTableCaptionElement.h b/Source/WebCore/html/HTMLTableCaptionElement.h
index da40e821d..a43141f40 100644
--- a/Source/WebCore/html/HTMLTableCaptionElement.h
+++ b/Source/WebCore/html/HTMLTableCaptionElement.h
@@ -26,18 +26,19 @@
#ifndef HTMLTableCaptionElement_h
#define HTMLTableCaptionElement_h
-#include "HTMLTablePartElement.h"
+#include "HTMLElement.h"
namespace WebCore {
-class HTMLTableCaptionElement : public HTMLTablePartElement {
+class HTMLTableCaptionElement : public HTMLElement {
public:
static PassRefPtr<HTMLTableCaptionElement> create(const QualifiedName&, Document*);
private:
HTMLTableCaptionElement(const QualifiedName&, Document*);
- virtual void parseAttribute(Attribute*) OVERRIDE;
+ virtual bool isPresentationAttribute(Attribute*) const OVERRIDE;
+ virtual void collectStyleForAttribute(Attribute*, StylePropertySet*) OVERRIDE;
};
} // namespace