LibWeb: Implement HTMLTableRowElement.deleteCell

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

View file

@ -20,6 +20,8 @@ public:
int row_index() const;
int section_row_index() const;
WebIDL::ExceptionOr<JS::NonnullGCPtr<HTMLTableCellElement>> insert_cell(i32 index);
WebIDL::ExceptionOr<void> delete_cell(i32 index);
private:
HTMLTableRowElement(DOM::Document&, DOM::QualifiedName);