Serenity Operating System
1#import <HTML/HTMLElement.idl>
2
3// https://html.spec.whatwg.org/multipage/tables.html#htmltablecellelement
4[Exposed=Window]
5interface HTMLTableCellElement : HTMLElement {
6
7 attribute unsigned long colSpan;
8 attribute unsigned long rowSpan;
9 [Reflect] attribute DOMString headers;
10 [Reflect] attribute DOMString abbr;
11
12 [Reflect] attribute DOMString align;
13 [Reflect] attribute DOMString axis;
14 [Reflect] attribute DOMString height;
15 [Reflect] attribute DOMString width;
16
17 [Reflect=char] attribute DOMString ch;
18 [Reflect=charoff] attribute DOMString chOff;
19 [Reflect=nowrap] attribute boolean noWrap;
20 [Reflect=valign] attribute DOMString vAlign;
21
22 [LegacyNullToEmptyString, Reflect=bgcolor] attribute DOMString bgColor;
23
24};