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

12 lines
245 B
Text
Raw Normal View History

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