HTMLTableRowElement.idl 609 B

1234567891011121314151617181920
  1. #import <DOM/HTMLCollection.idl>
  2. #import <HTML/HTMLElement.idl>
  3. // https://html.spec.whatwg.org/multipage/tables.html#htmltablerowelement
  4. [Exposed=Window]
  5. interface HTMLTableRowElement : HTMLElement {
  6. [Reflect] attribute DOMString align;
  7. [Reflect=char] attribute DOMString ch;
  8. [Reflect=charoff] attribute DOMString chOff;
  9. [Reflect=valign] attribute DOMString vAlign;
  10. [LegacyNullToEmptyString, Reflect=bgcolor] attribute DOMString bgColor;
  11. readonly attribute long rowIndex;
  12. readonly attribute long sectionRowIndex;
  13. [SameObject] readonly attribute HTMLCollection cells;
  14. };