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

// https://html.spec.whatwg.org/multipage/grouping-content.html#htmllielement
[Exposed=Window]
interface HTMLLIElement : HTMLElement {

    [HTMLConstructor] constructor();

    [Reflect] attribute DOMString type;

};