LibWeb: Implement HTMLSelectElement.type

This commit is contained in:
Luke Wilde 2022-11-05 04:51:42 +00:00 committed by Andreas Kling
commit c4ee43c5b4
Notes: sideshowbarker 2024-07-17 10:08:28 +09:00
3 changed files with 17 additions and 0 deletions

View file

@ -56,6 +56,8 @@ public:
// https://html.spec.whatwg.org/multipage/forms.html#category-label
virtual bool is_labelable() const override { return true; }
String const& type() const;
private:
HTMLSelectElement(DOM::Document&, DOM::QualifiedName);