LibWeb: Implement the HTMLOptionElement.form attribute

This returns the parent form of a HTMLOptionElement or null if the
element has no parent form.
This commit is contained in:
Tim Ledbetter
2024-05-15 22:54:17 +01:00
committed by Andreas Kling
parent fe7df98d7d
commit 763b7f0e0c
5 changed files with 64 additions and 1 deletions

View File

@@ -31,6 +31,8 @@ public:
bool disabled() const;
JS::GCPtr<HTML::HTMLFormElement> form() const;
virtual Optional<ARIA::Role> default_role() const override;
private: