HTMLTableCellElement.idl 598 B

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