mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:58:12 +00:00
LibWeb: Implement HTMLTableSectionElement::insertRow()
This commit is contained in:
parent
57090f75ae
commit
009588eb28
3 changed files with 29 additions and 0 deletions
|
@ -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);
|
||||
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue