diff options
author | julieng <julien.gattelier@gmail.com> | 2021-10-02 17:20:24 +0200 |
---|---|---|
committer | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-10-02 17:30:20 +0200 |
commit | 1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde (patch) | |
tree | 30a56efd3eff3a01bd1611e1840fdbbfacf544a4 /files/fr/web/api/window/locationbar | |
parent | c05efa8d7ae464235cf83d7c0956e42dc6974103 (diff) | |
download | translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.gz translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.bz2 translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.zip |
convert content to md
Diffstat (limited to 'files/fr/web/api/window/locationbar')
-rw-r--r-- | files/fr/web/api/window/locationbar/index.md | 75 |
1 files changed, 29 insertions, 46 deletions
diff --git a/files/fr/web/api/window/locationbar/index.md b/files/fr/web/api/window/locationbar/index.md index 294652fb88..3a7a8cc795 100644 --- a/files/fr/web/api/window/locationbar/index.md +++ b/files/fr/web/api/window/locationbar/index.md @@ -9,64 +9,47 @@ tags: - Window translation_of: Web/API/Window/locationbar --- -<div>{{APIRef}}</div> +{{APIRef}} -<p>Renvoie l'objet <code>locationbar</code>, dont la visibilité peut être vérifiée.</p> +Renvoie l'objet `locationbar`, dont la visibilité peut être vérifiée. -<h2 id="Syntaxe">Syntaxe</h2> +## Syntaxe -<pre class="syntaxbox"><var>objRef</var> = window.locationbar -</pre> + objRef = window.locationbar -<h2 id="Exemple">Exemple</h2> +## Exemple -<p>L'exemple HTML complet suivant montre comment la propriété <code>visible</code> de l'objet <code>locationbar</code> est utilisée.</p> +L'exemple HTML complet suivant montre comment la propriété `visible` de l'objet `locationbar` est utilisée. -<pre class="brush:html"><!DOCTYPE html> -<html lang="fr"> -<head> -<meta charset="UTF-8" /> -<title>Divers tests DOM</title> +```html +<!DOCTYPE html> +<html lang="fr"> +<head> +<meta charset="UTF-8" /> +<title>Divers tests DOM</title> -<script> +<script> var visible = window.locationbar.visible; -</script> +</script> -</head> -<body> - <p>Divers tests DOM</p> -</body> -</html> -</pre> +</head> +<body> + <p>Divers tests DOM</p> +</body> +</html> +``` -<h2 id="Spécifications">Spécifications</h2> +## Spécifications -<table class="standard-table"> - <tbody> - <tr> - <th scope="col">Spécification</th> - <th scope="col">Statut</th> - <th scope="col">Commentaires</th> - </tr> - <tr> - <td>{{SpecName('HTML WHATWG', 'browsers.html#dom-window-locationbar', 'Window.locationbar')}}</td> - <td>{{Spec2('HTML WHATWG')}}</td> - <td></td> - </tr> - <tr> - <td>{{SpecName('HTML5 W3C', 'browsers.html#dom-window-locationbar', 'Window.locationbar')}}</td> - <td>{{Spec2('HTML5 W3C')}}</td> - <td></td> - </tr> - </tbody> -</table> +| Spécification | Statut | Commentaires | +| ------------------------------------------------------------------------------------------------------------------------ | -------------------------------- | ------------ | +| {{SpecName('HTML WHATWG', 'browsers.html#dom-window-locationbar', 'Window.locationbar')}} | {{Spec2('HTML WHATWG')}} | | +| {{SpecName('HTML5 W3C', 'browsers.html#dom-window-locationbar', 'Window.locationbar')}} | {{Spec2('HTML5 W3C')}} | | -<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> +## Compatibilité des navigateurs -<p>{{Compat("api.Window.locationbar")}}</p> +{{Compat("api.Window.locationbar")}} -<h2 id="Voir_également">Voir également</h2> +## Voir également -<ul> - <li>{{domxref("window.locationbar")}}, {{domxref("window.menubar")}}, {{domxref("window.personalbar")}}, {{domxref("window.scrollbars")}}, {{domxref("window.statusbar")}}, {{domxref("window.toolbar")}}</li> -</ul> +- {{domxref("window.locationbar")}}, {{domxref("window.menubar")}}, {{domxref("window.personalbar")}}, {{domxref("window.scrollbars")}}, {{domxref("window.statusbar")}}, {{domxref("window.toolbar")}} |