diff options
Diffstat (limited to 'WebCore/html/HTMLIFrameElement.h')
-rw-r--r-- | WebCore/html/HTMLIFrameElement.h | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/WebCore/html/HTMLIFrameElement.h b/WebCore/html/HTMLIFrameElement.h index 362b991..f1c6a35 100644 --- a/WebCore/html/HTMLIFrameElement.h +++ b/WebCore/html/HTMLIFrameElement.h @@ -2,7 +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) 2004, 2006, 2008 Apple Inc. All rights reserved. + * Copyright (C) 2004, 2006, 2008, 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 @@ -30,6 +30,9 @@ namespace WebCore { class HTMLIFrameElement : public HTMLFrameElementBase { public: + static PassRefPtr<HTMLIFrameElement> create(const QualifiedName&, Document*); + +private: HTMLIFrameElement(const QualifiedName&, Document*); virtual HTMLTagStatus endTagRequirement() const { return TagStatusRequired; } @@ -48,16 +51,6 @@ public: virtual bool isURLAttribute(Attribute*) const; - String align() const; - void setAlign(const String&); - - String height() const; - void setHeight(const String&); - - String width() const; - void setWidth(const String&); - -private: AtomicString m_name; }; |