2020-07-27 05:04:26 +01:00
|
|
|
interface HTMLTableElement : HTMLElement {
|
|
|
|
|
2021-05-02 17:43:42 +01:00
|
|
|
attribute HTMLTableCaptionElement? caption;
|
|
|
|
HTMLTableCaptionElement createCaption();
|
|
|
|
undefined deleteCaption();
|
|
|
|
|
2021-05-02 18:03:47 +01:00
|
|
|
attribute HTMLTableSectionElement? tHead;
|
|
|
|
HTMLTableSectionElement createTHead();
|
|
|
|
undefined deleteTHead();
|
|
|
|
|
2021-05-02 18:07:45 +01:00
|
|
|
attribute HTMLTableSectionElement? tFoot;
|
|
|
|
HTMLTableSectionElement createTFoot();
|
|
|
|
undefined deleteTFoot();
|
|
|
|
|
2021-05-02 18:17:08 +01:00
|
|
|
readonly attribute HTMLCollection tBodies;
|
|
|
|
HTMLTableSectionElement createTBody();
|
|
|
|
|
2021-04-26 16:36:40 +01:00
|
|
|
readonly attribute HTMLCollection rows;
|
|
|
|
HTMLTableRowElement insertRow(optional long index = -1);
|
|
|
|
undefined deleteRow(long index);
|
|
|
|
|
2020-11-12 04:16:41 +00:00
|
|
|
[Reflect] attribute DOMString align;
|
|
|
|
[Reflect] attribute DOMString border;
|
|
|
|
[Reflect] attribute DOMString frame;
|
|
|
|
[Reflect] attribute DOMString rules;
|
|
|
|
[Reflect] attribute DOMString summary;
|
|
|
|
[Reflect] attribute DOMString width;
|
2020-07-27 05:04:26 +01:00
|
|
|
|
2020-11-12 04:16:41 +00:00
|
|
|
[LegacyNullToEmptyString, Reflect=bgcolor] attribute DOMString bgColor;
|
|
|
|
[LegacyNullToEmptyString, Reflect=cellpadding] attribute DOMString cellPadding;
|
|
|
|
[LegacyNullToEmptyString, Reflect=cellspacing] attribute DOMString cellSpacing;
|
2020-07-27 05:04:26 +01:00
|
|
|
|
2020-12-09 21:26:42 +00:00
|
|
|
};
|