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

// 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;

};

HTMLFrameSetElement includes WindowEventHandlers;