ladybird/Userland/Libraries/LibWeb/HTML/HTMLSelectElement.idl
2022-03-20 16:19:47 +01:00

13 lines
350 B
Text

#import <HTML/HTMLElement.idl>
#import <HTML/HTMLOptionsCollection.idl>
interface HTMLSelectElement : HTMLElement {
[Reflect] attribute boolean disabled;
[Reflect] attribute boolean multiple;
[Reflect] attribute boolean required;
[SameObject] readonly attribute HTMLOptionsCollection options;
attribute long selectedIndex;
};