HTMLTableCellElement.idl 635 B

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