ladybird/Userland/Libraries/LibWeb/HTML/HTMLFrameElement.idl
2024-05-19 17:35:25 +02:00

21 lines
848 B
Text

#import <HTML/HTMLElement.idl>
// https://html.spec.whatwg.org/multipage/semantics.html#htmlframeelement
[Exposed=Window]
interface HTMLFrameElement : HTMLElement {
[HTMLConstructor] constructor();
[CEReactions, Reflect] attribute DOMString name;
[CEReactions, Reflect] attribute DOMString scrolling;
[CEReactions, Reflect] attribute DOMString src;
[CEReactions, Reflect=frameborder] attribute DOMString frameBorder;
[CEReactions, Reflect=longdesc] attribute DOMString longDesc;
[FIXME, CEReactions] attribute boolean noResize;
[FIXME] readonly attribute Document? contentDocument;
[FIXME] readonly attribute WindowProxy? contentWindow;
[FIXME, CEReactions, LegacyNullToEmptyString] attribute DOMString marginHeight;
[FIXME, CEReactions, LegacyNullToEmptyString] attribute DOMString marginWidth;
};