From a89b2ebb8e192c5e8cea21079bda2ee2c0c7dddd Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Fri, 25 May 2012 15:09:11 +0200 Subject: Imported WebKit commit eb5c1b8fe4d4b1b90b5137433fc58a91da0e6878 (http://svn.webkit.org/repository/webkit/trunk@118516) --- Source/WebCore/html/HTMLScriptElement.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Source/WebCore/html/HTMLScriptElement.cpp') diff --git a/Source/WebCore/html/HTMLScriptElement.cpp b/Source/WebCore/html/HTMLScriptElement.cpp index fba8b8bcf..4f2c9561f 100644 --- a/Source/WebCore/html/HTMLScriptElement.cpp +++ b/Source/WebCore/html/HTMLScriptElement.cpp @@ -42,9 +42,9 @@ inline HTMLScriptElement::HTMLScriptElement(const QualifiedName& tagName, Docume ASSERT(hasTagName(scriptTag)); } -PassRefPtr HTMLScriptElement::create(const QualifiedName& tagName, Document* document, bool wasInsertedByParser) +PassRefPtr HTMLScriptElement::create(const QualifiedName& tagName, Document* document, bool wasInsertedByParser, bool alreadyStarted) { - return adoptRef(new HTMLScriptElement(tagName, document, wasInsertedByParser, false)); + return adoptRef(new HTMLScriptElement(tagName, document, wasInsertedByParser, alreadyStarted)); } bool HTMLScriptElement::isURLAttribute(const Attribute& attribute) const @@ -72,7 +72,7 @@ void HTMLScriptElement::parseAttribute(const Attribute& attribute) HTMLElement::parseAttribute(attribute); } -Node::InsertionNotificationRequest HTMLScriptElement::insertedInto(Node* insertionPoint) +Node::InsertionNotificationRequest HTMLScriptElement::insertedInto(ContainerNode* insertionPoint) { HTMLElement::insertedInto(insertionPoint); ScriptElement::insertedInto(insertionPoint); -- cgit v1.2.1