mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 09:45:06 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
13 lines
340 B
Plaintext
13 lines
340 B
Plaintext
// https://html.spec.whatwg.org/multipage/semantics.html#htmlframesetelement
|
|
[Exposed=Window]
|
|
interface HTMLFrameSetElement : HTMLElement {
|
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
[CEReactions, Reflect] attribute DOMString cols;
|
|
[CEReactions, Reflect] attribute DOMString rows;
|
|
|
|
};
|
|
|
|
HTMLFrameSetElement includes WindowEventHandlers;
|