LibWeb: Add HTML col element span attribute

This commit is contained in:
Bastiaan van der Plaat 2023-11-24 17:40:05 +01:00 committed by Andreas Kling
commit 01f000acb0
Notes: sideshowbarker 2024-07-17 11:34:34 +09:00
4 changed files with 24 additions and 2 deletions

View file

@ -17,6 +17,9 @@ class HTMLTableColElement final : public HTMLElement {
public:
virtual ~HTMLTableColElement() override;
unsigned span() const;
WebIDL::ExceptionOr<void> set_span(unsigned);
private:
HTMLTableColElement(DOM::Document&, DOM::QualifiedName);