mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 02:40:49 +00:00
14 lines
350 B
Plaintext
14 lines
350 B
Plaintext
#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;
|
|
|
|
};
|