HTMLTableCellElement.idl 764 B

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