HTMLTableSectionElement.idl 497 B

12345678910111213141516
  1. #import <DOM/HTMLCollection.idl>
  2. #import <HTML/HTMLElement.idl>
  3. #import <HTML/HTMLTableRowElement.idl>
  4. interface HTMLTableSectionElement : HTMLElement {
  5. [Reflect] attribute DOMString align;
  6. [Reflect=char] attribute DOMString ch;
  7. [Reflect=charoff] attribute DOMString chOff;
  8. [Reflect=valign] attribute DOMString vAlign;
  9. [SameObject] readonly attribute HTMLCollection rows;
  10. HTMLTableRowElement insertRow(optional long index = -1);
  11. undefined deleteRow(long index);
  12. };