| Index: Source/core/html/HTMLTitleElement.cpp
|
| diff --git a/Source/core/html/HTMLTitleElement.cpp b/Source/core/html/HTMLTitleElement.cpp
|
| index 48ed56ea3e06e30d44794d2f237d79e255d343f6..c9fdaedc0f204d62844c66a3a24ea116a22fa827 100644
|
| --- a/Source/core/html/HTMLTitleElement.cpp
|
| +++ b/Source/core/html/HTMLTitleElement.cpp
|
| @@ -35,17 +35,16 @@ namespace WebCore {
|
|
|
| using namespace HTMLNames;
|
|
|
| -inline HTMLTitleElement::HTMLTitleElement(const QualifiedName& tagName, Document& document)
|
| - : HTMLElement(tagName, document)
|
| +inline HTMLTitleElement::HTMLTitleElement(Document& document)
|
| + : HTMLElement(titleTag, document)
|
| {
|
| - ASSERT(hasTagName(titleTag));
|
| setHasCustomStyleCallbacks();
|
| ScriptWrappable::init(this);
|
| }
|
|
|
| -PassRefPtr<HTMLTitleElement> HTMLTitleElement::create(const QualifiedName& tagName, Document& document)
|
| +PassRefPtr<HTMLTitleElement> HTMLTitleElement::create(Document& document)
|
| {
|
| - return adoptRef(new HTMLTitleElement(tagName, document));
|
| + return adoptRef(new HTMLTitleElement(document));
|
| }
|
|
|
| Node::InsertionNotificationRequest HTMLTitleElement::insertedInto(ContainerNode* insertionPoint)
|
|
|