HTMLTableElement.idl 685 B

123456789101112131415161718
  1. interface HTMLTableElement : HTMLElement {
  2. readonly attribute HTMLCollection rows;
  3. HTMLTableRowElement insertRow(optional long index = -1);
  4. undefined deleteRow(long index);
  5. [Reflect] attribute DOMString align;
  6. [Reflect] attribute DOMString border;
  7. [Reflect] attribute DOMString frame;
  8. [Reflect] attribute DOMString rules;
  9. [Reflect] attribute DOMString summary;
  10. [Reflect] attribute DOMString width;
  11. [LegacyNullToEmptyString, Reflect=bgcolor] attribute DOMString bgColor;
  12. [LegacyNullToEmptyString, Reflect=cellpadding] attribute DOMString cellPadding;
  13. [LegacyNullToEmptyString, Reflect=cellspacing] attribute DOMString cellSpacing;
  14. };