| Index: Source/core/html/HTMLOListElement.cpp
|
| diff --git a/Source/core/html/HTMLOListElement.cpp b/Source/core/html/HTMLOListElement.cpp
|
| index 8ad5bbbdc05ef7cd62209a48fa87a2d6b24d0906..6076ea1172a34365e987fb13f520826c2d422873 100644
|
| --- a/Source/core/html/HTMLOListElement.cpp
|
| +++ b/Source/core/html/HTMLOListElement.cpp
|
| @@ -32,26 +32,20 @@ namespace WebCore {
|
|
|
| using namespace HTMLNames;
|
|
|
| -HTMLOListElement::HTMLOListElement(const QualifiedName& tagName, Document& document)
|
| - : HTMLElement(tagName, document)
|
| +HTMLOListElement::HTMLOListElement(Document& document)
|
| + : HTMLElement(olTag, document)
|
| , m_start(0xBADBEEF)
|
| , m_itemCount(0)
|
| , m_hasExplicitStart(false)
|
| , m_isReversed(false)
|
| , m_shouldRecalculateItemCount(false)
|
| {
|
| - ASSERT(hasTagName(olTag));
|
| ScriptWrappable::init(this);
|
| }
|
|
|
| PassRefPtr<HTMLOListElement> HTMLOListElement::create(Document& document)
|
| {
|
| - return adoptRef(new HTMLOListElement(olTag, document));
|
| -}
|
| -
|
| -PassRefPtr<HTMLOListElement> HTMLOListElement::create(const QualifiedName& tagName, Document& document)
|
| -{
|
| - return adoptRef(new HTMLOListElement(tagName, document));
|
| + return adoptRef(new HTMLOListElement(document));
|
| }
|
|
|
| bool HTMLOListElement::isPresentationAttribute(const QualifiedName& name) const
|
|
|