mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-03 04:52:06 +02:00
LibWeb: Implement HTMLTableSectionElement::insertRow()
This commit is contained in:
committed by
Andreas Kling
parent
57090f75ae
commit
009588eb28
Notes:
sideshowbarker
2024-07-17 17:32:16 +09:00
Author: https://github.com/IdanHo Commit: https://github.com/SerenityOS/serenity/commit/009588eb28 Pull-request: https://github.com/SerenityOS/serenity/pull/13014 Reviewed-by: https://github.com/awesomekling ✅
@@ -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);
|
||||
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user