HTMLTableRowElement.idl 763 B

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