Serenity Operating System
1#import <HTML/HTMLElement.idl>
2
3// https://html.spec.whatwg.org/multipage/tables.html#htmltablecolelement
4[Exposed=Window]
5interface HTMLTableColElement : HTMLElement {
6
7 [Reflect] attribute DOMString align;
8 [Reflect=char] attribute DOMString ch;
9 [Reflect=charoff] attribute DOMString chOff;
10 [Reflect=valign] attribute DOMString vAlign;
11 [Reflect] attribute DOMString width;
12
13};