blob: b3312f432b675f1af07389805e51c3f2d6b7423a (
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();
[CEReactions, Reflect] attribute USVString cite;
[CEReactions, Reflect=datetime] attribute DOMString dateTime;
};
|