2022-08-28 08:42:07 -03:00
|
|
|
#import <DOM/Document.idl>
|
2022-02-15 16:10:51 -03:00
|
|
|
#import <HTML/HTMLElement.idl>
|
|
|
|
|
|
2022-10-07 19:45:09 -03:00
|
|
|
// https://html.spec.whatwg.org/multipage/iframe-embed-object.html#htmlobjectelement
|
|
|
|
|
[Exposed=Window]
|
2020-07-27 01:04:26 -03:00
|
|
|
interface HTMLObjectElement : HTMLElement {
|
|
|
|
|
|
2023-03-23 04:48:52 -03:00
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
|
|
2022-03-23 09:24:11 -03:00
|
|
|
[CEReactions] attribute DOMString data;
|
2023-02-28 22:45:18 -03:00
|
|
|
[CEReactions, Reflect] attribute DOMString type;
|
|
|
|
|
[CEReactions, Reflect] attribute DOMString name;
|
|
|
|
|
[CEReactions, Reflect=usemap] attribute DOMString useMap;
|
|
|
|
|
[CEReactions, Reflect] attribute DOMString width;
|
|
|
|
|
[CEReactions, Reflect] attribute DOMString height;
|
2020-07-27 01:04:26 -03:00
|
|
|
|
2022-03-24 17:07:23 -03:00
|
|
|
readonly attribute Document? contentDocument;
|
|
|
|
|
|
2023-02-28 22:45:18 -03:00
|
|
|
[CEReactions, Reflect] attribute DOMString align;
|
|
|
|
|
[CEReactions, Reflect] attribute DOMString archive;
|
|
|
|
|
[CEReactions, Reflect] attribute DOMString code;
|
|
|
|
|
[CEReactions, Reflect] attribute boolean declare;
|
|
|
|
|
[CEReactions, Reflect] attribute DOMString standby;
|
|
|
|
|
[CEReactions, Reflect=codetype] attribute DOMString codeType;
|
2020-11-12 01:16:41 -03:00
|
|
|
|
2023-02-28 22:45:18 -03:00
|
|
|
[CEReactions, LegacyNullToEmptyString, Reflect] attribute DOMString border;
|
2020-11-12 01:16:41 -03:00
|
|
|
|
2022-03-24 17:08:06 -03:00
|
|
|
Document? getSVGDocument();
|
2020-12-09 18:26:42 -03:00
|
|
|
};
|