LibWeb: Support border attribute on the table element

Fixes #19938.
This commit is contained in:
Andi Gallo 2023-08-21 23:44:07 +00:00 committed by Alexander Kalenik
commit b13fe9397d
Notes: sideshowbarker 2024-07-17 00:47:29 +09:00
8 changed files with 105 additions and 1 deletions

View file

@ -45,6 +45,8 @@ public:
// https://www.w3.org/TR/html-aria/#el-table
virtual Optional<ARIA::Role> default_role() const override { return ARIA::Role::table; }
unsigned border() const;
private:
HTMLTableElement(DOM::Document&, DOM::QualifiedName);