diff options
Diffstat (limited to 'WebCore/html/HTMLDirectoryElement.h')
-rw-r--r-- | WebCore/html/HTMLDirectoryElement.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/WebCore/html/HTMLDirectoryElement.h b/WebCore/html/HTMLDirectoryElement.h index eead141..0e440d4 100644 --- a/WebCore/html/HTMLDirectoryElement.h +++ b/WebCore/html/HTMLDirectoryElement.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,13 +29,13 @@ namespace WebCore { class HTMLDirectoryElement : public HTMLElement { public: + static PassRefPtr<HTMLDirectoryElement> create(const QualifiedName& tagName, Document*); + +private: HTMLDirectoryElement(const QualifiedName&, Document*); virtual HTMLTagStatus endTagRequirement() const { return TagStatusRequired; } virtual int tagPriority() const { return 5; } - - bool compact() const; - void setCompact(bool); }; } //namespace |