LibWeb: Implement selectedness algorithm

Implement selectedness setting algorithm in HTMLSelectElement
This commit is contained in:
Timur Sultanov 2024-07-25 21:13:22 +04:00 committed by Sam Atkins
commit f4102b1dc9
Notes: github-actions[bot] 2024-07-26 08:16:49 +00:00
4 changed files with 65 additions and 15 deletions

View file

@ -20,6 +20,7 @@ public:
bool selected() const { return m_selected; }
void set_selected(bool);
void set_selected_internal(bool);
String value() const;
WebIDL::ExceptionOr<void> set_value(String const&);