HTMLTableColElement.idl 397 B

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