1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #import <HTML/HTMLElement.idl>
- #import <HTML/HTMLTableCaptionElement.idl>
- #import <HTML/HTMLTableRowElement.idl>
- #import <HTML/HTMLTableSectionElement.idl>
- #import <DOM/HTMLCollection.idl>
- // https://html.spec.whatwg.org/multipage/tables.html#htmltableelement
- [Exposed=Window]
- interface HTMLTableElement : HTMLElement {
- attribute HTMLTableCaptionElement? caption;
- HTMLTableCaptionElement createCaption();
- undefined deleteCaption();
- attribute HTMLTableSectionElement? tHead;
- HTMLTableSectionElement createTHead();
- undefined deleteTHead();
- attribute HTMLTableSectionElement? tFoot;
- HTMLTableSectionElement createTFoot();
- undefined deleteTFoot();
- [SameObject] readonly attribute HTMLCollection tBodies;
- HTMLTableSectionElement createTBody();
- [SameObject] 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;
- };
|