summaryrefslogtreecommitdiffstats
path: root/WebCore/html/HTMLBaseElement.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/html/HTMLBaseElement.h')
-rw-r--r--WebCore/html/HTMLBaseElement.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/WebCore/html/HTMLBaseElement.h b/WebCore/html/HTMLBaseElement.h
index f068851..d413bec 100644
--- a/WebCore/html/HTMLBaseElement.h
+++ b/WebCore/html/HTMLBaseElement.h
@@ -1,7 +1,7 @@
/*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 1999 Antti Koivisto (koivisto@kde.org)
- * Copyright (C) 2003 Apple Computer, Inc.
+ * Copyright (C) 2003, 2009 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 +19,7 @@
* Boston, MA 02110-1301, USA.
*
*/
+
#ifndef HTMLBaseElement_h
#define HTMLBaseElement_h
@@ -26,16 +27,14 @@
namespace WebCore {
-class HTMLBaseElement : public HTMLElement
-{
+class HTMLBaseElement : public HTMLElement {
public:
HTMLBaseElement(const QualifiedName&, Document*);
- ~HTMLBaseElement();
+private:
virtual HTMLTagStatus endTagRequirement() const { return TagStatusForbidden; }
virtual int tagPriority() const { return 0; }
- String href() const { return m_href; }
virtual String target() const { return m_target; }
virtual void parseMappedAttribute(MappedAttribute*);
@@ -47,7 +46,7 @@ public:
void setHref(const String&);
void setTarget(const String&);
-protected:
+ String m_hrefAttrValue;
String m_href;
String m_target;
};