HTMLTableRowElement.idl 882 B

12345678910111213141516171819202122232425
  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. [HTMLConstructor] constructor();
  8. readonly attribute long rowIndex;
  9. readonly attribute long sectionRowIndex;
  10. [SameObject] readonly attribute HTMLCollection cells;
  11. HTMLTableCellElement insertCell(optional long index = -1);
  12. [CEReactions] undefined deleteCell(long index);
  13. // Obsolete
  14. [CEReactions, Reflect] attribute DOMString align;
  15. [CEReactions, Reflect=char] attribute DOMString ch;
  16. [CEReactions, Reflect=charoff] attribute DOMString chOff;
  17. [CEReactions, Reflect=valign] attribute DOMString vAlign;
  18. [CEReactions, LegacyNullToEmptyString, Reflect=bgcolor] attribute DOMString bgColor;
  19. };