mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-30 16:28:48 +00:00
13 lines
350 B
Text
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;
|
|
|
|
};
|