blob: e35f86a5460af7f77f9d9c25f15f125c76499b57 (
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();
[Reflect] attribute DOMString cols;
[Reflect] attribute DOMString rows;
};
HTMLFrameSetElement includes WindowEventHandlers;
|