1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:28:11 +00:00

LibWeb: Implement HTMLTableRowElement.insertCell

This commit is contained in:
Luke Wilde 2022-11-05 15:18:50 +00:00 committed by Andreas Kling
parent f984c70b20
commit 6c9b3fb62e
2 changed files with 29 additions and 1 deletions

View file

@ -1,5 +1,6 @@
#import <DOM/HTMLCollection.idl>
#import <HTML/HTMLElement.idl>
#import <HTML/HTMLTableCellElement.idl>
// https://html.spec.whatwg.org/multipage/tables.html#htmltablerowelement
[Exposed=Window]
@ -16,5 +17,5 @@ interface HTMLTableRowElement : HTMLElement {
readonly attribute long sectionRowIndex;
[SameObject] readonly attribute HTMLCollection cells;
HTMLTableCellElement insertCell(optional long index = -1);
};