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

// https://html.spec.whatwg.org/multipage/edits.html#htmlmodelement
[Exposed=Window]
interface HTMLModElement : HTMLElement {

    [HTMLConstructor] constructor();

    [Reflect] attribute USVString cite;
    [Reflect=datetime] attribute DOMString dateTime;

};