1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 06:17:35 +00:00

LibWeb: Implement HTMLOptionElement.selected

This commit is contained in:
Andreas Kling 2022-03-20 16:13:58 +01:00
parent a606345576
commit 80ed2ab557
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;
};