diff options
Diffstat (limited to 'files/fr/web/api/history/length/index.md')
-rw-r--r-- | files/fr/web/api/history/length/index.md | 46 |
1 files changed, 13 insertions, 33 deletions
diff --git a/files/fr/web/api/history/length/index.md b/files/fr/web/api/history/length/index.md index bbed2b4976..b077915a06 100644 --- a/files/fr/web/api/history/length/index.md +++ b/files/fr/web/api/history/length/index.md @@ -3,45 +3,25 @@ title: History.length slug: Web/API/History/length translation_of: Web/API/History/length --- -<div>{{APIRef("History API")}}</div> +{{APIRef("History API")}} -<p>La propriété en lecture seule <code><strong>History.length</strong></code> retourne un entier indiquant le nombre d'élément dans l'historique de session, incluant la page courante. Par exemple, pour une page dans un nouvel onglet, la propriété retournera <code>1</code>.</p> +La propriété en lecture seule **`History.length`** retourne un entier indiquant le nombre d'élément dans l'historique de session, incluant la page courante. Par exemple, pour une page dans un nouvel onglet, la propriété retournera `1`. -<h2 id="Syntaxe">Syntaxe</h2> +## Syntaxe -<pre class="syntaxbox">const <em>length</em> = history.length -</pre> + const length = history.length -<h2 id="Spécification">Spécification</h2> +## Spécification -<table class="standard-table"> - <tbody> - <tr> - <th scope="col">Spécification</th> - <th scope="col">Statuts</th> - <th scope="col">Commentaire</th> - </tr> - <tr> - <td>{{SpecName('HTML WHATWG', "history.html#dom-history-length", "History.length")}}</td> - <td>{{Spec2('HTML WHATWG')}}</td> - <td>Pas de changement depuis {{SpecName("HTML5 W3C")}}.</td> - </tr> - <tr> - <td>{{SpecName('HTML5 W3C', "browsers.html#dom-history-length", "History.length")}}</td> - <td>{{Spec2('HTML5 W3C')}}</td> - <td>Définition initiale.</td> - </tr> - </tbody> -</table> +| Spécification | Statuts | Commentaire | +| ------------------------------------------------------------------------------------------------------------ | -------------------------------- | ---------------------------------------------------------- | +| {{SpecName('HTML WHATWG', "history.html#dom-history-length", "History.length")}} | {{Spec2('HTML WHATWG')}} | Pas de changement depuis {{SpecName("HTML5 W3C")}}. | +| {{SpecName('HTML5 W3C', "browsers.html#dom-history-length", "History.length")}} | {{Spec2('HTML5 W3C')}} | Définition initiale. | -<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> +## Compatibilité des navigateurs +{{Compat("api.History.length")}} +## Voir aussi -<p>{{Compat("api.History.length")}}</p> - -<h2 id="Voir_aussi">Voir aussi</h2> - -<ul> - <li>L'interface {{domxref("History")}} auquel <code>length</code> se rattache.</li> -</ul> +- L'interface {{domxref("History")}} auquel `length` se rattache. |