HTMLTableRowElement.idl 518 B

123456789101112131415161718
  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. readonly attribute long rowIndex;
  10. readonly attribute long sectionRowIndex;
  11. [SameObject] readonly attribute HTMLCollection cells;
  12. };