summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLFrameSetElement.idl
blob: d0ca96b1d3e895397b215b0dcf1739dea13185df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#import <DOM/EventHandler.idl>
#import <HTML/HTMLElement.idl>

// https://html.spec.whatwg.org/multipage/semantics.html#htmlframesetelement
[Exposed=Window]
interface HTMLFrameSetElement : HTMLElement {

    [Reflect] attribute DOMString cols;
    [Reflect] attribute DOMString rows;

};

HTMLFrameSetElement includes WindowEventHandlers;