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

// https://html.spec.whatwg.org/multipage/text-level-semantics.html#htmltimeelement
[Exposed=Window]
interface HTMLTimeElement : HTMLElement {

    [Reflect=datetime] attribute DOMString dateTime;

};