#ifndef SVGScriptElement_h
#define SVGScriptElement_h
#include "SVGNames.h"
#include "core/dom/ScriptLoaderClient.h"
#include "core/svg/SVGAnimatedBoolean.h"
#include "core/svg/SVGAnimatedString.h"
#include "core/svg/SVGElement.h"
#include "core/svg/SVGURIReference.h"
namespace WebCore {
class ScriptLoader;
class SVGScriptElement FINAL
: public SVGElement
, public SVGURIReference
, public ScriptLoaderClient {
public:
static PassRefPtr<SVGScriptElement> create(Document&, bool wasInsertedByParser);
ScriptLoader* loader() const { return m_loader.get(); }
#ifndef NDEBUG
virtual bool isAnimatableAttribute(const QualifiedName&) const OVERRIDE;
#endif
private:
SVGScriptElement(Document&, bool wasInsertedByParser, bool alreadyStarted);
bool isSupportedAttribute(const QualifiedName&);
virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
virtual void didNotifySubtreeInsertionsToDocument() OVERRIDE;
virtual void childrenChanged(bool changedByParser = false, Node* beforeChange = 0, Node* afterChange = 0, int childCountDelta = 0) OVERRIDE;
virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE;
virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
virtual bool isStructurallyExternal() const OVERRIDE { return hasSourceAttribute(); }
virtual void finishParsingChildren() OVERRIDE;
virtual bool haveLoadedRequiredResources() OVERRIDE;
virtual String sourceAttributeValue() const OVERRIDE;
virtual String charsetAttributeValue() const OVERRIDE;
virtual String typeAttributeValue() const OVERRIDE;
virtual String languageAttributeValue() const OVERRIDE;
virtual String forAttributeValue() const OVERRIDE;
virtual String eventAttributeValue() const OVERRIDE;
virtual bool asyncAttributeValue() const OVERRIDE;
virtual bool deferAttributeValue() const OVERRIDE;
virtual bool hasSourceAttribute() const OVERRIDE;
virtual void dispatchLoadEvent() OVERRIDE;
virtual PassRefPtr<Element> cloneElementWithoutAttributesAndChildren() OVERRIDE;
virtual bool rendererIsNeeded(const RenderStyle&) OVERRIDE { return false; }
virtual Timer<SVGElement>* svgLoadEventTimer() OVERRIDE { return &m_svgLoadEventTimer; }
Timer<SVGElement> m_svgLoadEventTimer;
OwnPtr<ScriptLoader> m_loader;
};
}
#endif