2022-02-15 22:40:51 +03:30
|
|
|
#import <HTML/HTMLElement.idl>
|
|
|
|
|
2020-07-27 05:04:26 +01:00
|
|
|
interface HTMLObjectElement : HTMLElement {
|
|
|
|
|
2022-03-23 08:24:11 -04:00
|
|
|
[CEReactions] attribute DOMString data;
|
2020-07-27 05:04:26 +01:00
|
|
|
[Reflect] attribute DOMString type;
|
|
|
|
[Reflect] attribute DOMString name;
|
|
|
|
[Reflect=usemap] attribute DOMString useMap;
|
2020-08-01 03:05:43 +01:00
|
|
|
[Reflect] attribute DOMString width;
|
|
|
|
[Reflect] attribute DOMString height;
|
2020-07-27 05:04:26 +01:00
|
|
|
|
2022-03-24 22:07:23 +02:00
|
|
|
readonly attribute Document? contentDocument;
|
|
|
|
|
2020-11-12 04:16:41 +00:00
|
|
|
[Reflect] attribute DOMString align;
|
|
|
|
[Reflect] attribute DOMString archive;
|
|
|
|
[Reflect] attribute DOMString code;
|
|
|
|
[Reflect] attribute boolean declare;
|
|
|
|
[Reflect] attribute DOMString standby;
|
|
|
|
[Reflect=codetype] attribute DOMString codeType;
|
|
|
|
|
|
|
|
[LegacyNullToEmptyString, Reflect] attribute DOMString border;
|
|
|
|
|
2022-03-24 22:08:06 +02:00
|
|
|
Document? getSVGDocument();
|
2020-12-09 21:26:42 +00:00
|
|
|
};
|