mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
39 lines
1.5 KiB
Plaintext
39 lines
1.5 KiB
Plaintext
// https://html.spec.whatwg.org/multipage/tables.html#htmltableelement
|
|
[Exposed=Window]
|
|
interface HTMLTableElement : HTMLElement {
|
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
[CEReactions] attribute HTMLTableCaptionElement? caption;
|
|
HTMLTableCaptionElement createCaption();
|
|
[CEReactions] undefined deleteCaption();
|
|
|
|
[CEReactions] attribute HTMLTableSectionElement? tHead;
|
|
HTMLTableSectionElement createTHead();
|
|
[CEReactions] undefined deleteTHead();
|
|
|
|
[CEReactions] attribute HTMLTableSectionElement? tFoot;
|
|
HTMLTableSectionElement createTFoot();
|
|
[CEReactions] undefined deleteTFoot();
|
|
|
|
[SameObject] readonly attribute HTMLCollection tBodies;
|
|
HTMLTableSectionElement createTBody();
|
|
|
|
[SameObject] readonly attribute HTMLCollection rows;
|
|
HTMLTableRowElement insertRow(optional long index = -1);
|
|
[CEReactions] undefined deleteRow(long index);
|
|
|
|
// Obsolete
|
|
[CEReactions, Reflect] attribute DOMString align;
|
|
[CEReactions, Reflect] attribute DOMString border;
|
|
[CEReactions, Reflect] attribute DOMString frame;
|
|
[CEReactions, Reflect] attribute DOMString rules;
|
|
[CEReactions, Reflect] attribute DOMString summary;
|
|
[CEReactions, Reflect] attribute DOMString width;
|
|
|
|
[CEReactions, LegacyNullToEmptyString, Reflect=bgcolor] attribute DOMString bgColor;
|
|
[CEReactions, LegacyNullToEmptyString, Reflect=cellpadding] attribute DOMString cellPadding;
|
|
[CEReactions, LegacyNullToEmptyString, Reflect=cellspacing] attribute DOMString cellSpacing;
|
|
|
|
};
|