File tree Expand file tree Collapse file tree 2 files changed +22
-24
lines changed
Expand file tree Collapse file tree 2 files changed +22
-24
lines changed Original file line number Diff line number Diff line change 11661166 }
11671167 }
11681168 },
1169- "HTMLTableElement" : {
1170- "properties" : {
1171- "property" : {
1172- "rows" : {
1173- "name" : " rows" ,
1174- "overrideType" : " HTMLCollectionOf<HTMLTableRowElement>"
1175- },
1176- "tBodies" : {
1177- "name" : " tBodies" ,
1178- "overrideType" : " HTMLCollectionOf<HTMLTableSectionElement>"
1179- }
1180- }
1181- }
1182- },
1183- "HTMLTableSectionElement" : {
1184- "properties" : {
1185- "property" : {
1186- "rows" : {
1187- "name" : " rows" ,
1188- "overrideType" : " HTMLCollectionOf<HTMLTableRowElement>"
1189- }
1190- }
1191- }
1192- },
11931169 "Element" : {
11941170 "methods" : {
11951171 "method" : {
Original file line number Diff line number Diff line change @@ -14,6 +14,28 @@ interface HTMLIFrameElement {
1414 property loading overrideType= #""eager" | "lazy""#
1515}
1616
17+ interface HTMLTableElement {
18+ property rows {
19+ type HTMLCollectionOf {
20+ type HTMLTableRowElement
21+ }
22+ }
23+
24+ property tBodies {
25+ type HTMLCollectionOf {
26+ type HTMLTableSectionElement
27+ }
28+ }
29+ }
30+
31+ interface HTMLTableSectionElement {
32+ property rows {
33+ type HTMLCollectionOf {
34+ type HTMLTableRowElement
35+ }
36+ }
37+ }
38+
1739interface-mixin MessageEventTarget overrideThis= T typeParameters= T
1840
1941interface-mixin WindowEventHandlers {
You can’t perform that action at this time.
0 commit comments