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
Notes: sideshowbarker 2024-07-17 01:55:06 +09:00

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;