blob: 29d21d4f9948b315cee6e8e758308143e9053f7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#import <DOM/HTMLCollection.idl>
#import <HTML/HTMLElement.idl>
interface HTMLTableRowElement : HTMLElement {
[Reflect] attribute DOMString align;
[Reflect=char] attribute DOMString ch;
[Reflect=charoff] attribute DOMString chOff;
[Reflect=valign] attribute DOMString vAlign;
[LegacyNullToEmptyString, Reflect=bgcolor] attribute DOMString bgColor;
readonly attribute long rowIndex;
readonly attribute long sectionRowIndex;
[SameObject] readonly attribute HTMLCollection cells;
};
|