LibWeb: Add HTMLTableCellElement::rowSpan

This commit is contained in:
Simon Wanner 2022-03-28 23:36:10 +02:00 committed by Andreas Kling
commit bc4974648c
Notes: sideshowbarker 2024-07-17 16:35:57 +09:00
4 changed files with 15 additions and 0 deletions

View file

@ -18,7 +18,10 @@ public:
virtual ~HTMLTableCellElement() override;
unsigned col_span() const;
unsigned row_span() const;
void set_col_span(unsigned);
void set_row_span(unsigned);
private:
virtual void apply_presentational_hints(CSS::StyleProperties&) const override;