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

interface HTMLOptionElement : HTMLElement {

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

};