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

interface HTMLFrameSetElement : HTMLElement {

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

};

HTMLFrameSetElement includes WindowEventHandlers;