LibWeb: Add HTML legend element form getter

This commit is contained in:
Bastiaan van der Plaat 2023-11-24 17:38:31 +01:00 committed by Andreas Kling
commit 529fd0a65c
Notes: sideshowbarker 2024-07-17 01:28:15 +09:00
3 changed files with 17 additions and 1 deletions

View file

@ -17,6 +17,8 @@ class HTMLLegendElement final : public HTMLElement {
public:
virtual ~HTMLLegendElement() override;
HTMLFormElement* form();
private:
HTMLLegendElement(DOM::Document&, DOM::QualifiedName);