LibWeb: Implement HTMLTableSectionElement::insertRow()

This commit is contained in:
Idan Horowitz 2022-03-12 23:50:35 +02:00 committed by Andreas Kling
commit 009588eb28
Notes: sideshowbarker 2024-07-17 17:32:16 +09:00
3 changed files with 29 additions and 0 deletions

View file

@ -1,5 +1,6 @@
#import <DOM/HTMLCollection.idl>
#import <HTML/HTMLElement.idl>
#import <HTML/HTMLTableRowElement.idl>
interface HTMLTableSectionElement : HTMLElement {
@ -9,5 +10,6 @@ interface HTMLTableSectionElement : HTMLElement {
[Reflect=valign] attribute DOMString vAlign;
[SameObject] readonly attribute HTMLCollection rows;
HTMLTableRowElement insertRow(optional long index = -1);
};