mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 09:46:04 -05:00
37685b0181
* tBodies - returns a HTMLCollection of all tbody elements * createTBody - If necessary, creates a new tbody element and add it to the table after the last tbody element
33 lines
1.1 KiB
Text
33 lines
1.1 KiB
Text
interface HTMLTableElement : HTMLElement {
|
|
|
|
attribute HTMLTableCaptionElement? caption;
|
|
HTMLTableCaptionElement createCaption();
|
|
undefined deleteCaption();
|
|
|
|
attribute HTMLTableSectionElement? tHead;
|
|
HTMLTableSectionElement createTHead();
|
|
undefined deleteTHead();
|
|
|
|
attribute HTMLTableSectionElement? tFoot;
|
|
HTMLTableSectionElement createTFoot();
|
|
undefined deleteTFoot();
|
|
|
|
readonly attribute HTMLCollection tBodies;
|
|
HTMLTableSectionElement createTBody();
|
|
|
|
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;
|
|
|
|
};
|