HTMLTimeElement.idl 284 B

1234567891011
  1. #import <HTML/HTMLElement.idl>
  2. // https://html.spec.whatwg.org/multipage/text-level-semantics.html#htmltimeelement
  3. [Exposed=Window]
  4. interface HTMLTimeElement : HTMLElement {
  5. [HTMLConstructor] constructor();
  6. [CEReactions, Reflect=datetime] attribute DOMString dateTime;
  7. };