LibWeb: Bring HTMLOptionElement closer to spec

This commit is contained in:
Igor Pissolati 2022-04-12 13:29:16 -03:00 committed by Andreas Kling
commit 00099a8ade
Notes: sideshowbarker 2024-07-17 11:53:31 +09:00
3 changed files with 111 additions and 1 deletions

View file

@ -4,7 +4,10 @@ interface HTMLOptionElement : HTMLElement {
[Reflect] attribute boolean disabled;
[Reflect=selected] attribute boolean defaultSelected;
attribute boolean selected;
[CEReactions] attribute DOMString value;
[CEReactions] attribute DOMString text;
readonly attribute long index;
};