mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 18:14:59 +00:00
10 lines
214 B
Text
10 lines
214 B
Text
#import <HTML/HTMLElement.idl>
|
|
|
|
interface HTMLOptionElement : HTMLElement {
|
|
|
|
[Reflect] attribute boolean disabled;
|
|
[Reflect=selected] attribute boolean defaultSelected;
|
|
|
|
attribute boolean selected;
|
|
|
|
};
|