2022-02-15 22:40:51 +03:30
|
|
|
#import <HTML/HTMLElement.idl>
|
|
|
|
#import <DOM/Document.idl>
|
|
|
|
|
2022-10-07 16:45:09 -06:00
|
|
|
// https://html.spec.whatwg.org/multipage/iframe-embed-object.html#htmliframeelement
|
|
|
|
[Exposed=Window]
|
2020-07-27 05:04:26 +01:00
|
|
|
interface HTMLIFrameElement : HTMLElement {
|
|
|
|
|
|
|
|
[Reflect] attribute DOMString src;
|
|
|
|
[Reflect] attribute DOMString srcdoc;
|
|
|
|
[Reflect] attribute DOMString name;
|
|
|
|
[Reflect] attribute DOMString allow;
|
|
|
|
[Reflect] attribute DOMString width;
|
|
|
|
[Reflect] attribute DOMString height;
|
2020-11-09 08:15:10 +00:00
|
|
|
[Reflect=allowfullscreen] attribute boolean allowFullscreen;
|
2020-07-27 05:04:26 +01:00
|
|
|
|
2022-02-14 22:05:31 +00:00
|
|
|
readonly attribute Document? contentDocument;
|
2020-11-12 04:16:41 +00:00
|
|
|
|
2022-11-04 10:05:10 +01:00
|
|
|
readonly attribute WindowProxy? contentWindow;
|
2022-08-04 20:13:52 +02:00
|
|
|
|
2020-11-12 04:16:41 +00:00
|
|
|
[Reflect] attribute DOMString align;
|
|
|
|
[Reflect] attribute DOMString scrolling;
|
|
|
|
[Reflect=frameborder] attribute DOMString frameBorder;
|
|
|
|
|
|
|
|
[LegacyNullToEmptyString, Reflect=marginheight] attribute DOMString marginHeight;
|
|
|
|
[LegacyNullToEmptyString, Reflect=marginwidth] attribute DOMString marginWidth;
|
2022-03-24 22:08:06 +02:00
|
|
|
|
|
|
|
Document? getSVGDocument();
|
2020-12-09 21:26:42 +00:00
|
|
|
};
|