Definition
HTML Standard defines HTMLTableColElement
[Exposed=Window]
interface HTMLTableColElement : HTMLElement {
[HTMLConstructor] constructor();
[CEReactions, Reflect, ReflectDefault=1, ReflectRange=(1, 1000)] attribute unsigned long span;
// also has obsolete members
};
partial interface HTMLTableColElement {
[CEReactions, Reflect] attribute DOMString align;
[CEReactions, Reflect="char"] attribute DOMString ch;
[CEReactions, Reflect="charoff"] attribute DOMString chOff;
[CEReactions, Reflect] attribute DOMString vAlign;
[CEReactions, Reflect] attribute DOMString width;
};
Consolidated IDL (across mixin and partials)
[Exposed=Window]
interface HTMLTableColElement : HTMLElement {
[HTMLConstructor] constructor();
[CEReactions, Reflect, ReflectDefault=1, ReflectRange=(1, 1000)] attribute unsigned long span;
[CEReactions, Reflect] attribute DOMString align;
[CEReactions, Reflect="char"] attribute DOMString ch;
[CEReactions, Reflect="charoff"] attribute DOMString chOff;
[CEReactions, Reflect] attribute DOMString vAlign;
[CEReactions, Reflect] attribute DOMString width;
// also has obsolete members
};