1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 02:13:56 +09:00

LibWeb: Implement HTMLTableRowElement.deleteCell

This commit is contained in:
Luke Wilde 2022-11-05 15:19:16 +00:00 committed by Andreas Kling
parent 6c9b3fb62e
commit 009f04fa46
Notes: sideshowbarker 2024-07-17 04:41:57 +09:00
3 changed files with 27 additions and 0 deletions

View file

@ -18,4 +18,5 @@ interface HTMLTableRowElement : HTMLElement {
[SameObject] readonly attribute HTMLCollection cells;
HTMLTableCellElement insertCell(optional long index = -1);
[CEReactions] undefined deleteCell(long index);
};