summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLTableSectionElement.idl
blob: 8c7325a338a61a179390d93f1a1c495d3f22cbe4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#import <DOM/HTMLCollection.idl>
#import <HTML/HTMLElement.idl>

interface HTMLTableSectionElement : HTMLElement {

    [Reflect] attribute DOMString align;
    [Reflect=char] attribute DOMString ch;
    [Reflect=charoff] attribute DOMString chOff;
    [Reflect=valign] attribute DOMString vAlign;

    [SameObject] readonly attribute HTMLCollection rows;

};