2022-02-15 16:10:51 -03:00
|
|
|
#import <HTML/HTMLElement.idl>
|
2022-03-16 09:08:12 -03:00
|
|
|
#import <HTML/HTMLOptionsCollection.idl>
|
2022-02-15 16:10:51 -03:00
|
|
|
|
2020-07-31 23:07:00 -03:00
|
|
|
interface HTMLSelectElement : HTMLElement {
|
|
|
|
|
|
2020-11-09 05:15:10 -03:00
|
|
|
[Reflect] attribute boolean disabled;
|
|
|
|
|
[Reflect] attribute boolean multiple;
|
|
|
|
|
[Reflect] attribute boolean required;
|
2022-03-16 09:08:12 -03:00
|
|
|
[SameObject] readonly attribute HTMLOptionsCollection options;
|
2020-07-31 23:07:00 -03:00
|
|
|
|
2022-03-21 21:03:37 -03:00
|
|
|
[CEReactions] undefined add((HTMLOptionElement or HTMLOptGroupElement) element, optional (HTMLElement or long)? before = null);
|
|
|
|
|
|
2022-03-20 12:13:23 -03:00
|
|
|
attribute long selectedIndex;
|
|
|
|
|
|
2020-12-09 18:26:42 -03:00
|
|
|
};
|