| Index: Source/core/html/HTMLUListElement.cpp
|
| diff --git a/Source/core/html/HTMLUListElement.cpp b/Source/core/html/HTMLUListElement.cpp
|
| index e5b804c2de29c4dedfda6a5085567d8e276a7ce1..9eb6e55e679820512bc44dc22919fe36a37faeee 100644
|
| --- a/Source/core/html/HTMLUListElement.cpp
|
| +++ b/Source/core/html/HTMLUListElement.cpp
|
| @@ -30,21 +30,15 @@ namespace WebCore {
|
|
|
| using namespace HTMLNames;
|
|
|
| -HTMLUListElement::HTMLUListElement(const QualifiedName& tagName, Document& document)
|
| - : HTMLElement(tagName, document)
|
| +HTMLUListElement::HTMLUListElement(Document& document)
|
| + : HTMLElement(ulTag, document)
|
| {
|
| - ASSERT(hasTagName(ulTag));
|
| ScriptWrappable::init(this);
|
| }
|
|
|
| PassRefPtr<HTMLUListElement> HTMLUListElement::create(Document& document)
|
| {
|
| - return adoptRef(new HTMLUListElement(ulTag, document));
|
| -}
|
| -
|
| -PassRefPtr<HTMLUListElement> HTMLUListElement::create(const QualifiedName& tagName, Document& document)
|
| -{
|
| - return adoptRef(new HTMLUListElement(tagName, document));
|
| + return adoptRef(new HTMLUListElement(document));
|
| }
|
|
|
| bool HTMLUListElement::isPresentationAttribute(const QualifiedName& name) const
|
|
|