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

// https://html.spec.whatwg.org/multipage/form-elements.html#htmloptgroupelement
[Exposed=Window]
interface HTMLOptGroupElement : HTMLElement {

    [HTMLConstructor] constructor();

    [Reflect] attribute boolean disabled;
    [Reflect] attribute DOMString label;

};