Home | History | Annotate | Download | only in html

Lines Matching refs:HTMLSourceElement

29 #include "HTMLSourceElement.h"
44 inline HTMLSourceElement::HTMLSourceElement(const QualifiedName& tagName, Document* document)
46 , m_errorEventTimer(this, &HTMLSourceElement::errorEventTimerFired)
48 LOG(Media, "HTMLSourceElement::HTMLSourceElement - %p", this);
52 PassRefPtr<HTMLSourceElement> HTMLSourceElement::create(const QualifiedName& tagName, Document* document)
54 return adoptRef(new HTMLSourceElement(tagName, document));
57 void HTMLSourceElement::insertedIntoTree(bool deep)
64 void HTMLSourceElement::willRemove()
71 void HTMLSourceElement::setSrc(const String& url)
76 String HTMLSourceElement::media() const
81 void HTMLSourceElement::setMedia(const String& media)
86 String HTMLSourceElement::type() const
91 void HTMLSourceElement::setType(const String& type)
96 void HTMLSourceElement::scheduleErrorEvent()
98 LOG(Media, "HTMLSourceElement::scheduleErrorEvent - %p", this);
105 void HTMLSourceElement::cancelPendingErrorEvent()
107 LOG(Media, "HTMLSourceElement::cancelPendingErrorEvent - %p", this);
111 void HTMLSourceElement::errorEventTimerFired(Timer<HTMLSourceElement>*)
113 LOG(Media, "HTMLSourceElement::errorEventTimerFired - %p", this);
117 bool HTMLSourceElement::isURLAttribute(Attribute* attribute) const