summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLTableCellElement.h
diff options
context:
space:
mode:
authorSimon Wanner <skyrising@pvpctutorials.de>2022-03-28 23:27:56 +0200
committerAndreas Kling <kling@serenityos.org>2022-03-29 00:39:57 +0200
commitb7b647e9cde65fd92b74942c6c0f6852ef87f5a6 (patch)
tree3c75426945e0f60d47ae9ca382126467eb470d76 /Userland/Libraries/LibWeb/HTML/HTMLTableCellElement.h
parentb92cc3670b530a7c3659266b2e57dab0541ea2f7 (diff)
downloadserenity-b7b647e9cde65fd92b74942c6c0f6852ef87f5a6.zip
LibWeb: Add HTMLTableCellElement::colSpan
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLTableCellElement.h')
-rw-r--r--Userland/Libraries/LibWeb/HTML/HTMLTableCellElement.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLTableCellElement.h b/Userland/Libraries/LibWeb/HTML/HTMLTableCellElement.h
index 4fbceaac1e..dcddbbbb84 100644
--- a/Userland/Libraries/LibWeb/HTML/HTMLTableCellElement.h
+++ b/Userland/Libraries/LibWeb/HTML/HTMLTableCellElement.h
@@ -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;
};