ladybird/Userland/Libraries/LibWeb/HTML/HTMLFrameSetElement.idl

12 lines
245 B
Text
Raw Normal View History

2022-06-27 19:48:54 +01:00
#import <DOM/EventHandler.idl>
#import <HTML/HTMLElement.idl>
interface HTMLFrameSetElement : HTMLElement {
[Reflect] attribute DOMString cols;
[Reflect] attribute DOMString rows;
};
2022-06-27 19:48:54 +01:00
HTMLFrameSetElement includes WindowEventHandlers;