Home | History | Annotate | Download | only in svg

Lines Matching refs:SVGScriptElement

24 #include "SVGScriptElement.h"
35 DEFINE_ANIMATED_STRING(SVGScriptElement, XLinkNames::hrefAttr, Href, href)
36 DEFINE_ANIMATED_BOOLEAN(SVGScriptElement, SVGNames::externalResourcesRequiredAttr, ExternalResourcesRequired, externalResourcesRequired)
38 inline SVGScriptElement::SVGScriptElement(const QualifiedName& tagName, Document* document, bool wasInsertedByParser, bool alreadyStarted)
44 PassRefPtr<SVGScriptElement> SVGScriptElement::create(const QualifiedName& tagName, Document* document, bool insertedByParser)
46 return adoptRef(new SVGScriptElement(tagName, document, insertedByParser, false));
49 void SVGScriptElement::parseMappedAttribute(Attribute* attr)
65 void SVGScriptElement::svgAttributeChanged(const QualifiedName& attrName)
84 void SVGScriptElement::synchronizeProperty(const QualifiedName& attrName)
100 AttributeToPropertyTypeMap& SVGScriptElement::attributeToPropertyTypeMap()
106 void SVGScriptElement::fillAttributeToPropertyTypeMap()
111 void SVGScriptElement::insertedIntoDocument()
126 void SVGScriptElement::removedFromDocument()
132 void SVGScriptElement::childrenChanged(bool changedByParser, Node* beforeChange, Node* afterChange, int childCountDelta)
138 bool SVGScriptElement::isURLAttribute(Attribute* attr) const
143 void SVGScriptElement::finishParsingChildren()
152 String SVGScriptElement::type() const
157 void SVGScriptElement::setType(const String& type)
162 void SVGScriptElement::addSubresourceAttributeURLs(ListHashSet<KURL>& urls) const
169 bool SVGScriptElement::haveLoadedRequiredResources()
174 String SVGScriptElement::sourceAttributeValue() const
179 String SVGScriptElement::charsetAttributeValue() const
184 String SVGScriptElement::typeAttributeValue() const
189 String SVGScriptElement::languageAttributeValue() const
194 String SVGScriptElement::forAttributeValue() const
199 String SVGScriptElement::eventAttributeValue() const
204 bool SVGScriptElement::asyncAttributeValue() const
209 bool SVGScriptElement::deferAttributeValue() const
214 bool SVGScriptElement::hasSourceAttribute() const
219 void SVGScriptElement::dispatchLoadEvent()
247 void SVGScriptElement::dispatchErrorEvent()
252 PassRefPtr<Element> SVGScriptElement::cloneElementWithoutAttributesAndChildren() const
254 return adoptRef(new SVGScriptElement(tagQName(), document(), false, alreadyStarted()));