diff options
Diffstat (limited to 'WebCore/html/HTMLQuoteElement.cpp')
-rw-r--r-- | WebCore/html/HTMLQuoteElement.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/WebCore/html/HTMLQuoteElement.cpp b/WebCore/html/HTMLQuoteElement.cpp index c8f6d1a..19164e2 100644 --- a/WebCore/html/HTMLQuoteElement.cpp +++ b/WebCore/html/HTMLQuoteElement.cpp @@ -1,6 +1,4 @@ /** - * This file is part of the DOM implementation for KDE. - * * Copyright (C) 1999 Lars Knoll (knoll@kde.org) * (C) 1999 Antti Koivisto (koivisto@kde.org) * (C) 2000 Simon Hausmann <hausmann@kde.org> @@ -30,9 +28,10 @@ namespace WebCore { using namespace HTMLNames; -HTMLQuoteElement::HTMLQuoteElement(Document *doc) - : HTMLElement(qTag, doc) +HTMLQuoteElement::HTMLQuoteElement(const QualifiedName& tagName, Document* doc) + : HTMLElement(tagName, doc) { + ASSERT(hasTagName(qTag)); } String HTMLQuoteElement::cite() const |