mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
41 lines
1.5 KiB
Plaintext
41 lines
1.5 KiB
Plaintext
interface HTMLImageElement : HTMLElement {
|
|
/* IID: { 0xa6cf90ab, 0x15b3, 0x11d2, \
|
|
{ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 } } */
|
|
|
|
void HTMLImageElement();
|
|
|
|
attribute DOMString lowSrc;
|
|
attribute DOMString name;
|
|
attribute DOMString align;
|
|
attribute DOMString alt;
|
|
noscript attribute DOMString border;
|
|
noscript attribute DOMString height;
|
|
noscript attribute DOMString hspace;
|
|
attribute boolean isMap;
|
|
attribute DOMString longDesc;
|
|
noscript attribute DOMString src;
|
|
noscript attribute DOMString vspace;
|
|
noscript attribute DOMString width;
|
|
attribute DOMString useMap;
|
|
};
|
|
|
|
interface Image {
|
|
/* IID: { 0xa6cf90c7, 0x15b3, 0x11d2, \
|
|
{ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 } } */
|
|
|
|
void Image();
|
|
attribute DOMString lowsrc;
|
|
readonly attribute boolean complete;
|
|
|
|
/* Needed for backwards compatibility */
|
|
attribute long border;
|
|
attribute long height;
|
|
attribute long hspace;
|
|
attribute long vspace;
|
|
attribute long width;
|
|
|
|
readonly attribute long naturalHeight;
|
|
readonly attribute long naturalWidth;
|
|
};
|
|
|