LibWeb: Implement HTMLOptionElement.selected

This commit is contained in:
Andreas Kling 2022-03-20 16:13:58 +01:00
commit 80ed2ab557
Notes: sideshowbarker 2024-07-17 17:03:10 +09:00
3 changed files with 52 additions and 0 deletions

View file

@ -5,4 +5,6 @@ interface HTMLOptionElement : HTMLElement {
[Reflect] attribute boolean disabled;
[Reflect=selected] attribute boolean defaultSelected;
attribute boolean selected;
};