2022-02-15 22:40:51 +03:30
|
|
|
#import <HTML/HTMLElement.idl>
|
|
|
|
|
2020-06-21 15:26:09 +02:00
|
|
|
interface HTMLImageElement : HTMLElement {
|
|
|
|
|
2020-07-24 13:11:04 +02:00
|
|
|
[Reflect] attribute DOMString src;
|
|
|
|
[Reflect] attribute DOMString alt;
|
2020-07-27 05:04:26 +01:00
|
|
|
[Reflect] attribute DOMString srcset;
|
|
|
|
[Reflect] attribute DOMString sizes;
|
|
|
|
[Reflect=usemap] attribute DOMString useMap;
|
2020-11-09 08:15:10 +00:00
|
|
|
[Reflect=ismap] attribute boolean isMap;
|
2020-07-24 13:11:04 +02:00
|
|
|
|
2020-11-12 04:16:41 +00:00
|
|
|
[Reflect] attribute DOMString name;
|
|
|
|
[Reflect] attribute DOMString align;
|
|
|
|
[LegacyNullToEmptyString, Reflect] attribute DOMString border;
|
|
|
|
|
2022-02-25 18:42:37 +01:00
|
|
|
[CEReactions] attribute unsigned long width;
|
|
|
|
[CEReactions] attribute unsigned long height;
|
2022-04-12 13:20:43 -03:00
|
|
|
readonly attribute unsigned long naturalWidth;
|
|
|
|
readonly attribute unsigned long naturalHeight;
|
2022-02-25 18:42:37 +01:00
|
|
|
|
2022-10-03 14:54:27 +02:00
|
|
|
readonly attribute boolean complete;
|
|
|
|
|
2020-12-09 21:26:42 +00:00
|
|
|
};
|