LibWeb: Implement HTMLTableSectionElement::deleteRow()

This commit is contained in:
Idan Horowitz 2022-03-12 23:50:53 +02:00 committed by Andreas Kling
commit cc2e08d9e9
Notes: sideshowbarker 2024-07-17 17:32:11 +09:00
3 changed files with 24 additions and 0 deletions

View file

@ -20,6 +20,7 @@ public:
NonnullRefPtr<DOM::HTMLCollection> rows() const;
DOM::ExceptionOr<NonnullRefPtr<HTMLTableRowElement>> insert_row(long index);
DOM::ExceptionOr<void> delete_row(long index);
};
}