OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:HTMLImageElement
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebCore/html/
HTMLImageElement.h
35
class
HTMLImageElement
: public HTMLElement {
38
static PassRefPtr<
HTMLImageElement
> create(Document*);
39
static PassRefPtr<
HTMLImageElement
> create(const QualifiedName&, Document*, HTMLFormElement*);
40
static PassRefPtr<
HTMLImageElement
> createForJSConstructor(Document*, const int* optionalWidth, const int* optionalHeight);
42
virtual ~
HTMLImageElement
();
78
HTMLImageElement
(const QualifiedName&, Document*, HTMLFormElement* = 0);
HTMLImageElement.cpp
24
#include "
HTMLImageElement
.h"
44
HTMLImageElement
::
HTMLImageElement
(const QualifiedName& tagName, Document* document, HTMLFormElement* form)
56
PassRefPtr<
HTMLImageElement
>
HTMLImageElement
::create(Document* document)
58
return adoptRef(new
HTMLImageElement
(imgTag, document));
61
PassRefPtr<
HTMLImageElement
>
HTMLImageElement
::create(const QualifiedName& tagName, Document* document, HTMLFormElement* form)
63
return adoptRef(new
HTMLImageElement
(tagName, document, form));
66
HTMLImageElement
::~HTMLImageElement(
[
all
...]
Completed in 17 milliseconds