2022-02-15 16:10:51 -03:00
|
|
|
#import <HTML/HTMLElement.idl>
|
|
|
|
|
|
2020-07-31 23:05:43 -03:00
|
|
|
interface HTMLOptionElement : HTMLElement {
|
|
|
|
|
|
2020-11-09 05:15:10 -03:00
|
|
|
[Reflect] attribute boolean disabled;
|
|
|
|
|
[Reflect=selected] attribute boolean defaultSelected;
|
2022-03-20 12:13:58 -03:00
|
|
|
attribute boolean selected;
|
2022-04-12 13:29:16 -03:00
|
|
|
[CEReactions] attribute DOMString value;
|
|
|
|
|
|
|
|
|
|
[CEReactions] attribute DOMString text;
|
|
|
|
|
readonly attribute long index;
|
2022-03-20 12:13:58 -03:00
|
|
|
|
2020-12-09 18:26:42 -03:00
|
|
|
};
|