HTMLTableCellElement.idl 672 B

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