
* caption - Getter and setter for the caption element * createCaption - If necessary, creates a new caption element and add it to the table * deleteCaption - If a caption element exists in the table, delete it
22 lines
810 B
Text
22 lines
810 B
Text
interface HTMLTableElement : HTMLElement {
|
|
|
|
attribute HTMLTableCaptionElement? caption;
|
|
HTMLTableCaptionElement createCaption();
|
|
undefined deleteCaption();
|
|
|
|
readonly attribute HTMLCollection rows;
|
|
HTMLTableRowElement insertRow(optional long index = -1);
|
|
undefined deleteRow(long index);
|
|
|
|
[Reflect] attribute DOMString align;
|
|
[Reflect] attribute DOMString border;
|
|
[Reflect] attribute DOMString frame;
|
|
[Reflect] attribute DOMString rules;
|
|
[Reflect] attribute DOMString summary;
|
|
[Reflect] attribute DOMString width;
|
|
|
|
[LegacyNullToEmptyString, Reflect=bgcolor] attribute DOMString bgColor;
|
|
[LegacyNullToEmptyString, Reflect=cellpadding] attribute DOMString cellPadding;
|
|
[LegacyNullToEmptyString, Reflect=cellspacing] attribute DOMString cellSpacing;
|
|
|
|
};
|