diff options
author | julieng <julien.gattelier@gmail.com> | 2021-10-02 17:20:14 +0200 |
---|---|---|
committer | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-10-02 17:30:20 +0200 |
commit | c05efa8d7ae464235cf83d7c0956e42dc6974103 (patch) | |
tree | 6ea911b2f2010f63a026de6bb7a1a51e7690a7e1 /files/fr/web/api/htmltimeelement/index.md | |
parent | 13a5e017558b248ee1647d4a5825f183b51f09ad (diff) | |
download | translated-content-c05efa8d7ae464235cf83d7c0956e42dc6974103.tar.gz translated-content-c05efa8d7ae464235cf83d7c0956e42dc6974103.tar.bz2 translated-content-c05efa8d7ae464235cf83d7c0956e42dc6974103.zip |
move *.html to *.md
Diffstat (limited to 'files/fr/web/api/htmltimeelement/index.md')
-rw-r--r-- | files/fr/web/api/htmltimeelement/index.md | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/files/fr/web/api/htmltimeelement/index.md b/files/fr/web/api/htmltimeelement/index.md new file mode 100644 index 0000000000..aa3bf1b0c7 --- /dev/null +++ b/files/fr/web/api/htmltimeelement/index.md @@ -0,0 +1,64 @@ +--- +title: HTMLTimeElement +slug: Web/API/HTMLTimeElement +translation_of: Web/API/HTMLTimeElement +--- +<div>{{ APIRef("HTML DOM") }}</div> + +<p>L'interface <strong><code>HTMLTimeElement</code></strong> fournit des propriétés spéciales (en plus de celles fournies en héritage par l'interface {{domxref("HTMLElement")}}) pour manipuler les éléments {{HTMLElement("time")}}.</p> + +<p>{{InheritanceDiagram(600, 120)}}</p> + +<h2 id="Propriétés">Propriétés</h2> + +<p><em>Hérite des propriétés de {{domxref("HTMLElement")}}.</em></p> + +<dl> + <dt>{{domxref("HTMLTimeElement.dateTime")}}</dt> + <dd>C'est une {{domxref("DOMString")}} qui reflète l'attribut {{htmlattrxref("datetime", "time")}} de l'élément HTML correspondant, dans une forme interprétable par un ordinateur de la date et de l'heure.</dd> +</dl> + +<h2 id="Méthodes">Méthodes</h2> + +<p><em>Pas de méthode spécifique, mais cette interface hérite des méthodes de {{domxref("HTMLElement")}}.</em></p> + +<h2 id="Spécifications">Spécifications</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Spécification</th> + <th scope="col">Status</th> + <th scope="col">Commentaires</th> + </tr> + <tr> + <td>{{SpecName('HTML WHATWG', "#htmltimeelement", "HTMLTimeElement")}}</td> + <td>{{Spec2('HTML WHATWG')}}</td> + <td></td> + </tr> + <tr> + <td>{{SpecName('HTML5.1', "text-level-semantics.html#the-time-element", "HTMLTimeElement")}}</td> + <td>{{Spec2('HTML5.1')}}</td> + <td>Pas de changement depuis {{SpecName("HTML5 W3C")}}.</td> + </tr> + <tr> + <td>{{SpecName('HTML5 W3C', "text-level-semantics.html#the-time-element", "HTMLTimeElement")}}</td> + <td>{{Spec2('HTML5 W3C')}}</td> + <td>Définition initiale.</td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> + +<div> + + +<p>{{Compat("api.HTMLTimeElement")}}</p> +</div> + +<h2 id="Voir_aussi">Voir aussi</h2> + +<ul> + <li>L'élément HTML {{HTMLElement("time")}} implémentant cette interface.</li> +</ul> |