summaryrefslogtreecommitdiffstats
path: root/WebCore/html/HTMLDivElement.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/html/HTMLDivElement.h')
-rw-r--r--WebCore/html/HTMLDivElement.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/WebCore/html/HTMLDivElement.h b/WebCore/html/HTMLDivElement.h
index 8359b96..aa60275 100644
--- a/WebCore/html/HTMLDivElement.h
+++ b/WebCore/html/HTMLDivElement.h
@@ -1,6 +1,7 @@
/*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 1999 Antti Koivisto (koivisto@kde.org)
+ * Copyright (C) 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
@@ -28,17 +29,21 @@ namespace WebCore {
class HTMLDivElement : public HTMLElement {
public:
+ static PassRefPtr<HTMLDivElement> create(Document*);
+ static PassRefPtr<HTMLDivElement> create(const QualifiedName&, Document*);
+
+ String align() const;
+ void setAlign(const String&);
+
+protected:
HTMLDivElement(const QualifiedName&, Document*);
- ~HTMLDivElement();
+private:
virtual HTMLTagStatus endTagRequirement() const { return TagStatusRequired; }
virtual int tagPriority() const { return 5; }
virtual bool mapToEntry(const QualifiedName&, MappedAttributeEntry&) const;
virtual void parseMappedAttribute(Attribute*);
-
- String align() const;
- void setAlign(const String&);
};
} // namespace WebCore