2022-10-07 19:45:09 -03:00
|
|
|
// https://html.spec.whatwg.org/multipage/iframe-embed-object.html#htmliframeelement
|
2023-09-02 10:09:33 -03:00
|
|
|
[Exposed=Window]
|
2020-07-27 01:04:26 -03:00
|
|
|
interface HTMLIFrameElement : HTMLElement {
|
|
|
|
|
|
2023-03-23 04:48:52 -03:00
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
|
|
2024-08-08 06:35:57 -03:00
|
|
|
[CEReactions, Reflect, URL] attribute USVString src;
|
2025-10-31 08:51:57 -03:00
|
|
|
[CEReactions] attribute (TrustedHTML or Utf16DOMString) srcdoc;
|
2023-02-28 22:45:18 -03:00
|
|
|
[CEReactions, Reflect] attribute DOMString name;
|
2024-11-17 15:16:26 -03:00
|
|
|
[SameObject, PutForwards=value] readonly attribute DOMTokenList sandbox;
|
2023-02-28 22:45:18 -03:00
|
|
|
[CEReactions, Reflect] attribute DOMString allow;
|
2023-10-25 12:26:24 -03:00
|
|
|
[CEReactions, Reflect=allowfullscreen] attribute boolean allowFullscreen;
|
2023-02-28 22:45:18 -03:00
|
|
|
[CEReactions, Reflect] attribute DOMString width;
|
|
|
|
|
[CEReactions, Reflect] attribute DOMString height;
|
2024-05-31 17:24:43 -03:00
|
|
|
[CEReactions, Reflect=referrerpolicy, Enumerated=ReferrerPolicy] attribute DOMString referrerPolicy;
|
2024-05-23 18:54:07 -03:00
|
|
|
[CEReactions, Enumerated=LazyLoadingAttribute, Reflect] attribute DOMString loading;
|
2022-02-14 19:05:31 -03:00
|
|
|
readonly attribute Document? contentDocument;
|
2022-11-04 06:05:10 -03:00
|
|
|
readonly attribute WindowProxy? contentWindow;
|
2023-10-25 12:26:24 -03:00
|
|
|
Document? getSVGDocument();
|
2022-08-04 15:13:52 -03:00
|
|
|
|
2023-10-25 12:26:24 -03:00
|
|
|
// Obsolete
|
2023-02-28 22:45:18 -03:00
|
|
|
[CEReactions, Reflect] attribute DOMString align;
|
|
|
|
|
[CEReactions, Reflect] attribute DOMString scrolling;
|
|
|
|
|
[CEReactions, Reflect=frameborder] attribute DOMString frameBorder;
|
2024-08-08 06:35:57 -03:00
|
|
|
[CEReactions, Reflect=longdesc, URL] attribute USVString longDesc;
|
2020-11-12 01:16:41 -03:00
|
|
|
|
2023-02-28 22:45:18 -03:00
|
|
|
[CEReactions, LegacyNullToEmptyString, Reflect=marginheight] attribute DOMString marginHeight;
|
|
|
|
|
[CEReactions, LegacyNullToEmptyString, Reflect=marginwidth] attribute DOMString marginWidth;
|
2022-03-24 17:08:06 -03:00
|
|
|
|
2020-12-09 18:26:42 -03:00
|
|
|
};
|