Serenity Operating System
1#import <DOM/HTMLCollection.idl>
2#import <HTML/HTMLElement.idl>
3#import <HTML/HTMLTableCellElement.idl>
4
5// https://html.spec.whatwg.org/multipage/tables.html#htmltablerowelement
6[Exposed=Window]
7interface HTMLTableRowElement : 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 [LegacyNullToEmptyString, Reflect=bgcolor] attribute DOMString bgColor;
15
16 readonly attribute long rowIndex;
17 readonly attribute long sectionRowIndex;
18
19 [SameObject] readonly attribute HTMLCollection cells;
20 HTMLTableCellElement insertCell(optional long index = -1);
21 [CEReactions] undefined deleteCell(long index);
22};