HTMLTableCellElement.idl 973 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. [CEReactions] attribute unsigned long colSpan;
  7. [CEReactions] attribute unsigned long rowSpan;
  8. [CEReactions, Reflect] attribute DOMString headers;
  9. [CEReactions, Reflect] attribute DOMString abbr;
  10. [CEReactions, Reflect] attribute DOMString align;
  11. [CEReactions, Reflect] attribute DOMString axis;
  12. [CEReactions, Reflect] attribute DOMString height;
  13. [CEReactions, Reflect] attribute DOMString width;
  14. [CEReactions, Reflect=char] attribute DOMString ch;
  15. [CEReactions, Reflect=charoff] attribute DOMString chOff;
  16. [CEReactions, Reflect=nowrap] attribute boolean noWrap;
  17. [CEReactions, Reflect=valign] attribute DOMString vAlign;
  18. [CEReactions, LegacyNullToEmptyString, Reflect=bgcolor] attribute DOMString bgColor;
  19. };