mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-05 14:42:50 +02:00
9 lines
181 B
Plaintext
9 lines
181 B
Plaintext
#import <HTML/HTMLElement.idl>
|
|
|
|
interface HTMLOptionElement : HTMLElement {
|
|
|
|
[Reflect] attribute boolean disabled;
|
|
[Reflect=selected] attribute boolean defaultSelected;
|
|
|
|
};
|