summaryrefslogtreecommitdiffstats
path: root/WebCore/html/HTMLTableCaptionElement.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/html/HTMLTableCaptionElement.h')
-rw-r--r--WebCore/html/HTMLTableCaptionElement.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/WebCore/html/HTMLTableCaptionElement.h b/WebCore/html/HTMLTableCaptionElement.h
index cf9d4d9..e97b03f 100644
--- a/WebCore/html/HTMLTableCaptionElement.h
+++ b/WebCore/html/HTMLTableCaptionElement.h
@@ -4,7 +4,7 @@
* (C) 1998 Waldo Bastian (bastian@kde.org)
* (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 1999 Antti Koivisto (koivisto@kde.org)
- * Copyright (C) 2003, 2004, 2005, 2006 Apple Computer, Inc.
+ * Copyright (C) 2003, 2004, 2005, 2006, 2010 Apple Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
@@ -32,6 +32,12 @@ namespace WebCore {
class HTMLTableCaptionElement : public HTMLTablePartElement {
public:
+ static PassRefPtr<HTMLTableCaptionElement> create(const QualifiedName&, Document*);
+
+ String align() const;
+ void setAlign(const String&);
+
+private:
HTMLTableCaptionElement(const QualifiedName&, Document*);
virtual HTMLTagStatus endTagRequirement() const { return TagStatusRequired; }
@@ -39,11 +45,8 @@ public:
virtual bool mapToEntry(const QualifiedName&, MappedAttributeEntry&) const;
virtual void parseMappedAttribute(Attribute*);
-
- String align() const;
- void setAlign(const String&);
};
-} //namespace
+} // namespace
#endif