1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-10 10:01:13 +09:00
ladybird/Userland/Libraries/LibWeb/HTML/HTMLFrameSetElement.idl
2022-06-29 21:21:50 +01:00

11 lines
245 B
Text

#import <DOM/EventHandler.idl>
#import <HTML/HTMLElement.idl>
interface HTMLFrameSetElement : HTMLElement {
[Reflect] attribute DOMString cols;
[Reflect] attribute DOMString rows;
};
HTMLFrameSetElement includes WindowEventHandlers;