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