blob: bb2467a4ef2506f82c8370fba4ff2880338a6be8 [file] [log] [blame]
/*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 1999 Antti Koivisto (koivisto@kde.org)
* (C) 2001 Dirk Mueller (mueller@kde.org)
* Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "core/html/HTMLScriptElement.h"
#include "bindings/core/v8/ExceptionStatePlaceholder.h"
#include "bindings/core/v8/ScriptEventListener.h"
#include "core/HTMLNames.h"
#include "core/dom/Attribute.h"
#include "core/dom/Document.h"
#include "core/dom/ScriptLoader.h"
#include "core/dom/ScriptRunner.h"
#include "core/dom/Text.h"
#include "core/events/Event.h"
#include "core/frame/UseCounter.h"
namespace blink {
using namespace HTMLNames;
inline HTMLScriptElement::HTMLScriptElement(Document& document, bool wasInsertedByParser, bool alreadyStarted, bool createdDuringDocumentWrite)
: HTMLElement(scriptTag, document)
, m_loader(ScriptLoader::create(this, wasInsertedByParser, alreadyStarted, createdDuringDocumentWrite))
{
}
HTMLScriptElement* HTMLScriptElement::create(Document& document, bool wasInsertedByParser, bool alreadyStarted, bool createdDuringDocumentWrite)
{
return new HTMLScriptElement(document, wasInsertedByParser, alreadyStarted, createdDuringDocumentWrite);
}
bool HTMLScriptElement::isURLAttribute(const Attribute& attribute) const
{
return attribute.name() == srcAttr || HTMLElement::isURLAttribute(attribute);
}
bool HTMLScriptElement::hasLegalLinkAttribute(const QualifiedName& name) const
{
return name == srcAttr || HTMLElement::hasLegalLinkAttribute(name);
}
const QualifiedName& HTMLScriptElement::subResourceAttributeName() const
{
return srcAttr;
}
void HTMLScriptElement::childrenChanged(const ChildrenChange& change)
{
HTMLElement::childrenChanged(change);
if (change.isChildInsertion())
m_loader->childrenChanged();
}
void HTMLScriptElement::didMoveToNewDocument(Document& oldDocument)
{
ScriptRunner::movePendingScript(oldDocument, document(), m_loader.get());
HTMLElement::didMoveToNewDocument(oldDocument);
}
void HTMLScriptElement::parseAttribute(const QualifiedName& name, const AtomicString& oldValue, const AtomicString& value)
{
if (name == srcAttr) {
m_loader->handleSourceAttribute(value);
logUpdateAttributeIfIsolatedWorldAndInDocument("script", srcAttr, oldValue, value);
} else if (name == asyncAttr) {
m_loader->handleAsyncAttribute();
} else {
HTMLElement::parseAttribute(name, oldValue, value);
}
}
Node::InsertionNotificationRequest HTMLScriptElement::insertedInto(ContainerNode* insertionPoint)
{
if (insertionPoint->inShadowIncludingDocument() && hasSourceAttribute() && !loader()->isScriptTypeSupported(ScriptLoader::DisallowLegacyTypeInTypeAttribute))
UseCounter::count(document(), UseCounter::ScriptElementWithInvalidTypeHasSrc);
HTMLElement::insertedInto(insertionPoint);
logAddElementIfIsolatedWorldAndInDocument("script", srcAttr);
return InsertionShouldCallDidNotifySubtreeInsertions;
}
void HTMLScriptElement::didNotifySubtreeInsertionsToDocument()
{
m_loader->didNotifySubtreeInsertionsToDocument();
}
void HTMLScriptElement::setText(const String &value)
{
setTextContent(value);
}
void HTMLScriptElement::setAsync(bool async)
{
setBooleanAttribute(asyncAttr, async);
m_loader->handleAsyncAttribute();
}
bool HTMLScriptElement::async() const
{
return fastHasAttribute(asyncAttr) || (m_loader->forceAsync());
}
KURL HTMLScriptElement::src() const
{
return document().completeURL(sourceAttributeValue());
}
String HTMLScriptElement::sourceAttributeValue() const
{
return getAttribute(srcAttr).getString();
}
String HTMLScriptElement::charsetAttributeValue() const
{
return getAttribute(charsetAttr).getString();
}
String HTMLScriptElement::typeAttributeValue() const
{
return getAttribute(typeAttr).getString();
}
String HTMLScriptElement::languageAttributeValue() const
{
return getAttribute(languageAttr).getString();
}
String HTMLScriptElement::forAttributeValue() const
{
return getAttribute(forAttr).getString();
}
String HTMLScriptElement::eventAttributeValue() const
{
return getAttribute(eventAttr).getString();
}
bool HTMLScriptElement::asyncAttributeValue() const
{
return fastHasAttribute(asyncAttr);
}
bool HTMLScriptElement::deferAttributeValue() const
{
return fastHasAttribute(deferAttr);
}
bool HTMLScriptElement::hasSourceAttribute() const
{
return fastHasAttribute(srcAttr);
}
void HTMLScriptElement::dispatchLoadEvent()
{
ASSERT(!m_loader->haveFiredLoadEvent());
dispatchEvent(Event::create(EventTypeNames::load));
}
Element* HTMLScriptElement::cloneElementWithoutAttributesAndChildren()
{
return new HTMLScriptElement(document(), false, m_loader->alreadyStarted(), false);
}
DEFINE_TRACE(HTMLScriptElement)
{
visitor->trace(m_loader);
HTMLElement::trace(visitor);
}
} // namespace blink