HTMLTableRowElement.idl 866 B

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