mirror of
https://github.com/RGBCube/serenity
synced 2025-07-03 11:52:13 +00:00
LibWeb: Implement HTMLTableRowElement.deleteCell
This commit is contained in:
parent
6c9b3fb62e
commit
009f04fa46
3 changed files with 27 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue