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

10 lines
214 B
Text

#import <HTML/HTMLElement.idl>
interface HTMLOptionElement : HTMLElement {
[Reflect] attribute boolean disabled;
[Reflect=selected] attribute boolean defaultSelected;
attribute boolean selected;
};