HTMLTableCellElement.idl 802 B

1234567891011121314151617181920212223242526
  1. #import <HTML/HTMLElement.idl>
  2. // https://html.spec.whatwg.org/multipage/tables.html#htmltablecellelement
  3. [Exposed=Window]
  4. interface HTMLTableCellElement : HTMLElement {
  5. [HTMLConstructor] constructor();
  6. attribute unsigned long colSpan;
  7. attribute unsigned long rowSpan;
  8. [Reflect] attribute DOMString headers;
  9. [Reflect] attribute DOMString abbr;
  10. [Reflect] attribute DOMString align;
  11. [Reflect] attribute DOMString axis;
  12. [Reflect] attribute DOMString height;
  13. [Reflect] attribute DOMString width;
  14. [Reflect=char] attribute DOMString ch;
  15. [Reflect=charoff] attribute DOMString chOff;
  16. [Reflect=nowrap] attribute boolean noWrap;
  17. [Reflect=valign] attribute DOMString vAlign;
  18. [LegacyNullToEmptyString, Reflect=bgcolor] attribute DOMString bgColor;
  19. };