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

// https://html.spec.whatwg.org/multipage/semantics.html#htmldetailselement
[Exposed=Window]
interface HTMLDetailsElement : HTMLElement {

    [HTMLConstructor] constructor();

    [CEReactions, Reflect] attribute boolean open;

};