2022-08-28 13:42:07 +02:00
|
|
|
#import <DOM/Document.idl>
|
2022-02-15 22:40:51 +03:30
|
|
|
#import <HTML/HTMLElement.idl>
|
2025-02-17 20:44:26 +01:00
|
|
|
#import <HTML/ValidityState.idl>
|
2022-02-15 22:40:51 +03:30
|
|
|
|
2022-10-07 16:45:09 -06:00
|
|
|
// https://html.spec.whatwg.org/multipage/iframe-embed-object.html#htmlobjectelement
|
2023-09-03 15:39:01 +12:00
|
|
|
[Exposed=Window]
|
2020-07-27 05:04:26 +01:00
|
|
|
interface HTMLObjectElement : HTMLElement {
|
|
|
|
|
2023-03-23 03:48:52 -04:00
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
|
2024-08-08 10:35:57 +01:00
|
|
|
[CEReactions, URL] attribute USVString data;
|
2023-03-01 01:45:18 +00:00
|
|
|
[CEReactions, Reflect] attribute DOMString type;
|
|
|
|
[CEReactions, Reflect] attribute DOMString name;
|
2024-05-17 06:05:39 +01:00
|
|
|
readonly attribute HTMLFormElement? form;
|
2023-03-01 01:45:18 +00:00
|
|
|
[CEReactions, Reflect] attribute DOMString width;
|
|
|
|
[CEReactions, Reflect] attribute DOMString height;
|
2022-03-24 22:07:23 +02:00
|
|
|
readonly attribute Document? contentDocument;
|
2024-05-18 10:19:48 +01:00
|
|
|
readonly attribute WindowProxy? contentWindow;
|
2023-10-25 17:26:24 +02:00
|
|
|
Document? getSVGDocument();
|
2022-03-24 22:07:23 +02:00
|
|
|
|
2025-02-25 17:43:11 +09:00
|
|
|
readonly attribute boolean willValidate;
|
2025-02-17 20:44:26 +01:00
|
|
|
readonly attribute ValidityState validity;
|
2025-08-29 18:02:59 +02:00
|
|
|
readonly attribute Utf16DOMString validationMessage;
|
2025-08-29 17:56:20 +02:00
|
|
|
boolean checkValidity();
|
2025-08-29 17:52:55 +02:00
|
|
|
boolean reportValidity();
|
2025-02-17 20:50:56 +01:00
|
|
|
undefined setCustomValidity(DOMString error);
|
2023-10-25 17:26:24 +02:00
|
|
|
|
|
|
|
// Obsolete
|
2023-03-01 01:45:18 +00:00
|
|
|
[CEReactions, Reflect] attribute DOMString align;
|
|
|
|
[CEReactions, Reflect] attribute DOMString archive;
|
|
|
|
[CEReactions, Reflect] attribute DOMString code;
|
|
|
|
[CEReactions, Reflect] attribute boolean declare;
|
2024-05-21 12:12:54 +01:00
|
|
|
[CEReactions, Reflect] attribute unsigned long hspace;
|
2023-03-01 01:45:18 +00:00
|
|
|
[CEReactions, Reflect] attribute DOMString standby;
|
2024-05-21 12:12:54 +01:00
|
|
|
[CEReactions, Reflect] attribute unsigned long vspace;
|
2024-08-08 10:35:57 +01:00
|
|
|
[CEReactions, Reflect=codebase, URL] attribute USVString codeBase;
|
2023-03-01 01:45:18 +00:00
|
|
|
[CEReactions, Reflect=codetype] attribute DOMString codeType;
|
2023-10-25 17:26:24 +02:00
|
|
|
[CEReactions, Reflect=usemap] attribute DOMString useMap;
|
2020-11-12 04:16:41 +00:00
|
|
|
|
2023-03-01 01:45:18 +00:00
|
|
|
[CEReactions, LegacyNullToEmptyString, Reflect] attribute DOMString border;
|
2020-11-12 04:16:41 +00:00
|
|
|
|
2020-12-09 21:26:42 +00:00
|
|
|
};
|