blob: b84f50403bf38bb9671fe3933d05948d2882b69c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#import <HTML/HTMLElement.idl>
// https://html.spec.whatwg.org/multipage/tables.html#htmltablecolelement
[Exposed=Window]
interface HTMLTableColElement : HTMLElement {
[HTMLConstructor] constructor();
[CEReactions, Reflect] attribute DOMString align;
[CEReactions, Reflect=char] attribute DOMString ch;
[CEReactions, Reflect=charoff] attribute DOMString chOff;
[CEReactions, Reflect=valign] attribute DOMString vAlign;
[CEReactions, Reflect] attribute DOMString width;
};
|