HTMLTableCellElement.idl 1.1 KB

123456789101112131415161718192021222324252627282930
  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. // FIXME: readonly attribute long cellIndex;
  10. // FIXME: [CEReactions] attribute DOMString scope; // only conforming for th elements
  11. [CEReactions, Reflect] attribute DOMString abbr; // only conforming for th elements
  12. // Obsolete
  13. [CEReactions, Reflect] attribute DOMString align;
  14. [CEReactions, Reflect] attribute DOMString axis;
  15. [CEReactions, Reflect] attribute DOMString height;
  16. [CEReactions, Reflect] attribute DOMString width;
  17. [CEReactions, Reflect=char] attribute DOMString ch;
  18. [CEReactions, Reflect=charoff] attribute DOMString chOff;
  19. [CEReactions, Reflect=nowrap] attribute boolean noWrap;
  20. [CEReactions, Reflect=valign] attribute DOMString vAlign;
  21. [CEReactions, LegacyNullToEmptyString, Reflect=bgcolor] attribute DOMString bgColor;
  22. };