HTMLTableRowElement.idl 434 B

123456789101112131415
  1. #import <DOM/HTMLCollection.idl>
  2. #import <HTML/HTMLElement.idl>
  3. interface HTMLTableRowElement : HTMLElement {
  4. [Reflect] attribute DOMString align;
  5. [Reflect=char] attribute DOMString ch;
  6. [Reflect=charoff] attribute DOMString chOff;
  7. [Reflect=valign] attribute DOMString vAlign;
  8. [LegacyNullToEmptyString, Reflect=bgcolor] attribute DOMString bgColor;
  9. [SameObject] readonly attribute HTMLCollection cells;
  10. };