mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-26 14:28:49 +00:00
* tHead - Getter for the thead element The setter is not currently implemented * createTHead - If necessary, creates a new thead element and add it to the table after any caption or colgroup elements, but before anything else * deleteTHead - If a thead element exists in the table, delete it
26 lines
929 B
Text
26 lines
929 B
Text
interface HTMLTableElement : HTMLElement {
|
|
|
|
attribute HTMLTableCaptionElement? caption;
|
|
HTMLTableCaptionElement createCaption();
|
|
undefined deleteCaption();
|
|
|
|
attribute HTMLTableSectionElement? tHead;
|
|
HTMLTableSectionElement createTHead();
|
|
undefined deleteTHead();
|
|
|
|
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;
|
|
|
|
};
|