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