summaryrefslogtreecommitdiffstats
path: root/WebCore/html/HTMLQuoteElement.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/html/HTMLQuoteElement.h')
-rw-r--r--WebCore/html/HTMLQuoteElement.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/WebCore/html/HTMLQuoteElement.h b/WebCore/html/HTMLQuoteElement.h
index addbfb4..fa21d2d 100644
--- a/WebCore/html/HTMLQuoteElement.h
+++ b/WebCore/html/HTMLQuoteElement.h
@@ -2,6 +2,7 @@
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 1999 Antti Koivisto (koivisto@kde.org)
* (C) 2000 Simon Hausmann <hausmann@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
@@ -19,6 +20,7 @@
* Boston, MA 02110-1301, USA.
*
*/
+
#ifndef HTMLQuoteElement_h
#define HTMLQuoteElement_h
@@ -30,15 +32,18 @@ class String;
class HTMLQuoteElement : public HTMLElement {
public:
+ static PassRefPtr<HTMLQuoteElement> create(const QualifiedName&, Document*);
+
+ String cite() const;
+ void setCite(const String&);
+
+private:
HTMLQuoteElement(const QualifiedName&, Document*);
virtual HTMLTagStatus endTagRequirement() const { return TagStatusRequired; }
virtual int tagPriority() const { return 1; }
virtual void insertedIntoDocument();
-
- String cite() const;
- void setCite(const String&);
};
} //namespace