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

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

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

};