Definition
HTML Standard defines HTMLTableRowElement
[Exposed=Window]
interface HTMLTableRowElement : HTMLElement {
[HTMLConstructor] constructor();
readonly attribute long rowIndex;
readonly attribute long sectionRowIndex;
[SameObject] readonly attribute HTMLCollection cells;
HTMLTableCellElement insertCell(optional long index = -1);
[CEReactions] undefined deleteCell(long index);
// also has obsolete members
};
partial interface HTMLTableRowElement {
[CEReactions, Reflect] attribute DOMString align;
[CEReactions, Reflect="char"] attribute DOMString ch;
[CEReactions, Reflect="charoff"] attribute DOMString chOff;
[CEReactions, Reflect] attribute DOMString vAlign;
[CEReactions, Reflect] attribute [LegacyNullToEmptyString] DOMString bgColor;
};
Consolidated IDL (across mixin and partials)
[Exposed=Window]
interface HTMLTableRowElement : HTMLElement {
[HTMLConstructor] constructor();
readonly attribute long rowIndex;
readonly attribute long sectionRowIndex;
[SameObject] readonly attribute HTMLCollection cells;
HTMLTableCellElement insertCell(optional long index = -1);
[CEReactions] undefined deleteCell(long index);
[CEReactions, Reflect] attribute DOMString align;
[CEReactions, Reflect="char"] attribute DOMString ch;
[CEReactions, Reflect="charoff"] attribute DOMString chOff;
[CEReactions, Reflect] attribute DOMString vAlign;
[CEReactions, Reflect] attribute [LegacyNullToEmptyString] DOMString bgColor;
// also has obsolete members
};