1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 19:15:09 +00:00

LibWeb: Add HTMLTableSectionElement.rows and HTMLTableRowElement.cells

1% progression on ACID3. :^)
This commit is contained in:
Andreas Kling 2022-02-26 11:43:52 +01:00
parent 647576ec13
commit 79ea30bc96
6 changed files with 43 additions and 1 deletions

View file

@ -16,6 +16,8 @@ public:
HTMLTableRowElement(DOM::Document&, DOM::QualifiedName);
virtual ~HTMLTableRowElement() override;
NonnullRefPtr<DOM::HTMLCollection> cells() const;
};
}