LibWeb: Implement HTMLTableRowElement.insertCell

This commit is contained in:
Luke Wilde 2022-11-05 15:18:50 +00:00 committed by Andreas Kling
commit 6c9b3fb62e
Notes: sideshowbarker 2024-07-17 04:42:00 +09:00
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);
};