1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-16 20:05:07 +00:00

LibWeb: Add HTMLTableCellElement::colSpan

This commit is contained in:
Simon Wanner 2022-03-28 23:27:56 +02:00 committed by Andreas Kling
parent b92cc3670b
commit b7b647e9cd
3 changed files with 14 additions and 0 deletions

View file

@ -17,6 +17,9 @@ public:
HTMLTableCellElement(DOM::Document&, DOM::QualifiedName);
virtual ~HTMLTableCellElement() override;
unsigned col_span() const;
void set_col_span(unsigned);
private:
virtual void apply_presentational_hints(CSS::StyleProperties&) const override;
};