summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLOptionElement.idl
blob: edc12f5111ecc906e0b9ae8b949313a39283031a (plain)
1
2
3
4
5
6
7
8
9
10
#import <HTML/HTMLElement.idl>

interface HTMLOptionElement : HTMLElement {

    [Reflect] attribute boolean disabled;
    [Reflect=selected] attribute boolean defaultSelected;

    attribute boolean selected;

};