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
commit 79ea30bc96
Notes: sideshowbarker 2024-07-17 18:15:03 +09:00
6 changed files with 43 additions and 1 deletions

View file

@ -1,5 +1,6 @@
/*
* Copyright (c) 2020, the SerenityOS developers.
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
@ -16,6 +17,8 @@ public:
HTMLTableSectionElement(DOM::Document&, DOM::QualifiedName);
virtual ~HTMLTableSectionElement() override;
NonnullRefPtr<DOM::HTMLCollection> rows() const;
};
}