ladybird/Libraries/LibWeb/HTML/HTMLFrameSetElement.idl

13 lines
340 B
Text
Raw Normal View History

// https://html.spec.whatwg.org/multipage/semantics.html#htmlframesetelement
[Exposed=Window]
interface HTMLFrameSetElement : HTMLElement {
[HTMLConstructor] constructor();
[CEReactions, Reflect] attribute DOMString cols;
[CEReactions, Reflect] attribute DOMString rows;
};
2022-06-27 19:48:54 +01:00
HTMLFrameSetElement includes WindowEventHandlers;