HTMLTableColElement.idl 575 B

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