HTMLTableSectionElement.idl 592 B

123456789101112131415161718
  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. [Reflect] attribute DOMString align;
  8. [Reflect=char] attribute DOMString ch;
  9. [Reflect=charoff] attribute DOMString chOff;
  10. [Reflect=valign] attribute DOMString vAlign;
  11. [SameObject] readonly attribute HTMLCollection rows;
  12. HTMLTableRowElement insertRow(optional long index = -1);
  13. undefined deleteRow(long index);
  14. };