From f547adc9a91b22cdc678b4ec83e65c1e35cf72d5 Mon Sep 17 00:00:00 2001 From: MDN Date: Sun, 30 May 2021 01:21:51 +0000 Subject: [CRON] sync translated content --- .../fr/orphaned/web/api/element/tabstop/index.html | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 files/fr/orphaned/web/api/element/tabstop/index.html (limited to 'files/fr/orphaned/web/api') diff --git a/files/fr/orphaned/web/api/element/tabstop/index.html b/files/fr/orphaned/web/api/element/tabstop/index.html new file mode 100644 index 0000000000..26aa5f7820 --- /dev/null +++ b/files/fr/orphaned/web/api/element/tabstop/index.html @@ -0,0 +1,31 @@ +--- +title: Element.tabStop +slug: orphaned/Web/API/Element/tabStop +tags: + - API + - DOM + - Element + - Propriétés + - touche tabulation +translation_of: Web/API/Element/tabStop +original_slug: Web/API/Element/tabStop +--- +

{{APIRef("DOM")}}{{non-standard_header}}{{obsolete_header}}

+ +

La propriété tabStop de l'interface {{domxref("Element")}} renvoie un {{jsxref("Boolean")}} indiquant si l'élément peut recevoir le focus d'entrée via la touche de tabulation. Si l'élément spécifié est un onglet shadow, la navigation est déléguée à ses enfants.

+ +

La propriété a été proposée pour ajouter une fonctionnalité de tabulation aux éléments personnalisés. Alors qu'avec la propriété {{domxref("HTMLElement.tabIndex", "tabIndex")}} existante, il est nécessaire de spécifier un ordre pour que la touche tabulation soit utilisable sur un élément. La propriété tabStop devait découpler la propriété d'utilisation de la tabulation de l'index. Après les retours d'expérience, cette propriété a été supprimée de documentation de conception (en) et remplacée par {{domxref("ShadowRoot.delegatesFocus")}}.

+ +

Syntaxe

+ +
var isTabStop = element.tabStop;
+element.tabStop = (true|false);
+
+ +

Exemple

+ +
// TBD
+ +

Compatibilité des navigateurs

+ +

{{Compat("api.Element.tabStop")}}

-- cgit v1.2.3-54-g00ecf