diff options
Diffstat (limited to 'WebCore/html/HTMLMetaElement.cpp')
-rw-r--r-- | WebCore/html/HTMLMetaElement.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/WebCore/html/HTMLMetaElement.cpp b/WebCore/html/HTMLMetaElement.cpp index f2b5c4a..0a07651 100644 --- a/WebCore/html/HTMLMetaElement.cpp +++ b/WebCore/html/HTMLMetaElement.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) 2001 Dirk Mueller (mueller@kde.org) @@ -31,9 +29,10 @@ namespace WebCore { using namespace HTMLNames; -HTMLMetaElement::HTMLMetaElement(Document* doc) - : HTMLElement(metaTag, doc) +HTMLMetaElement::HTMLMetaElement(const QualifiedName& tagName, Document* doc) + : HTMLElement(tagName, doc) { + ASSERT(hasTagName(metaTag)); } HTMLMetaElement::~HTMLMetaElement() |