| Index: Source/core/html/HTMLHtmlElement.cpp
|
| diff --git a/Source/core/html/HTMLHtmlElement.cpp b/Source/core/html/HTMLHtmlElement.cpp
|
| index 406146f6cda3cb93af4be270574d14fcbd01e9ff..a1bc41628f0f14539ddaac0d66cd10aa9cf02ac5 100644
|
| --- a/Source/core/html/HTMLHtmlElement.cpp
|
| +++ b/Source/core/html/HTMLHtmlElement.cpp
|
| @@ -36,16 +36,13 @@ namespace WebCore {
|
|
|
| using namespace HTMLNames;
|
|
|
| -HTMLHtmlElement::HTMLHtmlElement(Document& document)
|
| +inline HTMLHtmlElement::HTMLHtmlElement(Document& document)
|
| : HTMLElement(htmlTag, document)
|
| {
|
| ScriptWrappable::init(this);
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<HTMLHtmlElement> HTMLHtmlElement::create(Document& document)
|
| -{
|
| - return adoptRefWillBeRefCountedGarbageCollected(new HTMLHtmlElement(document));
|
| -}
|
| +DEFINE_NODE_FACTORY(HTMLHtmlElement)
|
|
|
| bool HTMLHtmlElement::isURLAttribute(const Attribute& attribute) const
|
| {
|
|
|