1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 13:17:35 +00:00

LibWeb: Remove unused TableCellBox::next_cell()

This commit is contained in:
Aliaksandr Kalenik 2023-01-09 09:27:36 +03:00 committed by Andreas Kling
parent 6c5ba10bb0
commit 577c552209

View file

@ -18,9 +18,6 @@ public:
TableCellBox(DOM::Document&, DOM::Element*, CSS::ComputedValues);
virtual ~TableCellBox() override;
TableCellBox* next_cell() { return next_sibling_of_type<TableCellBox>(); }
TableCellBox const* next_cell() const { return next_sibling_of_type<TableCellBox>(); }
size_t colspan() const;
size_t rowspan() const;