Lines Matching defs:HTMLImageElement

24 #include "core/html/HTMLImageElement.h"
42 HTMLImageElement::HTMLImageElement(const QualifiedName& tagName, Document* document, HTMLFormElement* form)
54 PassRefPtr<HTMLImageElement> HTMLImageElement::create(Document* document)
56 return adoptRef(new HTMLImageElement(imgTag, document));
59 PassRefPtr<HTMLImageElement> HTMLImageElement::create(const QualifiedName& tagName, Document* document, HTMLFormElement* form)
61 return adoptRef(new HTMLImageElement(tagName, document, form));
64 HTMLImageElement::~HTMLImageElement()
70 PassRefPtr<HTMLImageElement> HTMLImageElement::createForJSConstructor(Document* document, const int* optionalWidth, const int* optionalHeight)
72 RefPtr<HTMLImageElement> image = adoptRef(new HTMLImageElement(imgTag, document));
80 bool HTMLImageElement::isPresentationAttribute(const QualifiedName& name) const
87 void HTMLImageElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style)
109 void HTMLImageElement::parseAttribute(const QualifiedName& name, const AtomicString& value)
129 String HTMLImageElement::altText() const
141 RenderObject* HTMLImageElement::createRenderer(RenderStyle* style)
151 bool HTMLImageElement::canStartSelection() const
159 void HTMLImageElement::attach(const AttachContext& context)
179 Node::InsertionNotificationRequest HTMLImageElement::insertedInto(ContainerNode* insertionPoint)
201 void HTMLImageElement::removedFrom(ContainerNode* insertionPoint)
209 int HTMLImageElement::width(bool ignorePendingStylesheets)
232 int HTMLImageElement::height(bool ignorePendingStylesheets)
255 int HTMLImageElement::naturalWidth() const
263 int HTMLImageElement::naturalHeight() const
271 bool HTMLImageElement::isURLAttribute(const Attribute& attribute) const
280 const AtomicString& HTMLImageElement::alt() const
285 bool HTMLImageElement::draggable() const
291 void HTMLImageElement::setHeight(int value)
296 KURL HTMLImageElement::src() const
301 void HTMLImageElement::setSrc(const String& value)
306 void HTMLImageElement::setWidth(int value)
311 int HTMLImageElement::x() const
322 int HTMLImageElement::y() const
333 bool HTMLImageElement::complete() const
338 void HTMLImageElement::addSubresourceAttributeURLs(ListHashSet<KURL>& urls) const
347 void HTMLImageElement::didMoveToNewDocument(Document* oldDocument)
353 bool HTMLImageElement::isServerMap() const
367 Image* HTMLImageElement::imageContents()