mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-07 12:20:12 +01:00
12 lines
284 B
Plaintext
12 lines
284 B
Plaintext
#import <HTML/HTMLElement.idl>
|
|
|
|
// https://html.spec.whatwg.org/multipage/text-level-semantics.html#htmltimeelement
|
|
[Exposed=Window]
|
|
interface HTMLTimeElement : HTMLElement {
|
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
[CEReactions, Reflect=datetime] attribute DOMString dateTime;
|
|
|
|
};
|