HTMLTableSectionElement.idl 712 B

123456789101112131415161718192021
  1. #import <DOM/HTMLCollection.idl>
  2. #import <HTML/HTMLElement.idl>
  3. #import <HTML/HTMLTableRowElement.idl>
  4. // https://html.spec.whatwg.org/multipage/tables.html#htmltablesectionelement
  5. [Exposed=Window]
  6. interface HTMLTableSectionElement : HTMLElement {
  7. [HTMLConstructor] constructor();
  8. [SameObject] readonly attribute HTMLCollection rows;
  9. HTMLTableRowElement insertRow(optional long index = -1);
  10. [CEReactions] undefined deleteRow(long index);
  11. // Obsolete
  12. [CEReactions, Reflect] attribute DOMString align;
  13. [CEReactions, Reflect=char] attribute DOMString ch;
  14. [CEReactions, Reflect=charoff] attribute DOMString chOff;
  15. [CEReactions, Reflect=valign] attribute DOMString vAlign;
  16. };