Home | History | Annotate | Download | only in html

Lines Matching defs:HTMLScriptElement

24 #include "core/html/HTMLScriptElement.h"
40 inline HTMLScriptElement::HTMLScriptElement(const QualifiedName& tagName, Document* document, bool wasInsertedByParser, bool alreadyStarted)
48 PassRefPtr<HTMLScriptElement> HTMLScriptElement::create(const QualifiedName& tagName, Document* document, bool wasInsertedByParser, bool alreadyStarted)
50 return adoptRef(new HTMLScriptElement(tagName, document, wasInsertedByParser, alreadyStarted));
53 bool HTMLScriptElement::isURLAttribute(const Attribute& attribute) const
58 void HTMLScriptElement::childrenChanged(bool changedByParser, Node* beforeChange, Node* afterChange, int childCountDelta)
64 void HTMLScriptElement::parseAttribute(const QualifiedName& name, const AtomicString& value)
76 Node::InsertionNotificationRequest HTMLScriptElement::insertedInto(ContainerNode* insertionPoint)
83 void HTMLScriptElement::setText(const String &value)
100 void HTMLScriptElement::setAsync(bool async)
106 bool HTMLScriptElement::async() const
111 KURL HTMLScriptElement::src() const
116 void HTMLScriptElement::addSubresourceAttributeURLs(ListHashSet<KURL>& urls) const
123 String HTMLScriptElement::sourceAttributeValue() const
128 String HTMLScriptElement::charsetAttributeValue() const
133 String HTMLScriptElement::typeAttributeValue() const
138 String HTMLScriptElement::languageAttributeValue() const
143 String HTMLScriptElement::forAttributeValue() const
148 String HTMLScriptElement::eventAttributeValue() const
153 bool HTMLScriptElement::asyncAttributeValue() const
158 bool HTMLScriptElement::deferAttributeValue() const
163 bool HTMLScriptElement::hasSourceAttribute() const
168 void HTMLScriptElement::dispatchLoadEvent()
174 PassRefPtr<Element> HTMLScriptElement::cloneElementWithoutAttributesAndChildren()
176 return adoptRef(new HTMLScriptElement(tagQName(), document(), false, m_loader->alreadyStarted()));