Serenity Operating System
1#import <DOM/HTMLCollection.idl>
2#import <HTML/HTMLElement.idl>
3#import <HTML/HTMLTableRowElement.idl>
4
5// https://html.spec.whatwg.org/multipage/tables.html#htmltablesectionelement
6[Exposed=Window]
7interface HTMLTableSectionElement : HTMLElement {
8
9 [Reflect] attribute DOMString align;
10 [Reflect=char] attribute DOMString ch;
11 [Reflect=charoff] attribute DOMString chOff;
12 [Reflect=valign] attribute DOMString vAlign;
13
14 [SameObject] readonly attribute HTMLCollection rows;
15 HTMLTableRowElement insertRow(optional long index = -1);
16 undefined deleteRow(long index);
17
18};