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 --- files/fr/_redirects.txt | 1 + files/fr/_wikihistory.json | 12 ++++----- .../fr/orphaned/web/api/element/tabstop/index.html | 31 ++++++++++++++++++++++ files/fr/web/api/element/tabstop/index.html | 30 --------------------- 4 files changed, 38 insertions(+), 36 deletions(-) create mode 100644 files/fr/orphaned/web/api/element/tabstop/index.html delete mode 100644 files/fr/web/api/element/tabstop/index.html (limited to 'files/fr') diff --git a/files/fr/_redirects.txt b/files/fr/_redirects.txt index 443db37789..ac33e81c1d 100644 --- a/files/fr/_redirects.txt +++ b/files/fr/_redirects.txt @@ -3760,6 +3760,7 @@ /fr/docs/Web/API/Element/ongotpointercapture /fr/docs/Web/API/GlobalEventHandlers/ongotpointercapture /fr/docs/Web/API/Element/onwheel /fr/docs/Web/API/GlobalEventHandlers/onwheel /fr/docs/Web/API/Element/removeChild /fr/docs/Web/API/Node/removeChild +/fr/docs/Web/API/Element/tabStop /fr/docs/orphaned/Web/API/Element/tabStop /fr/docs/Web/API/ElementTraversal /fr/docs/orphaned/Web/API/ElementTraversal /fr/docs/Web/API/Event.initEvent /fr/docs/Web/API/Event/initEvent /fr/docs/Web/API/Event.stopPropagation /fr/docs/Web/API/Event/stopPropagation diff --git a/files/fr/_wikihistory.json b/files/fr/_wikihistory.json index 5eae6a86f7..6ea966ba41 100644 --- a/files/fr/_wikihistory.json +++ b/files/fr/_wikihistory.json @@ -15804,12 +15804,6 @@ "loella16" ] }, - "Web/API/Element/tabStop": { - "modified": "2019-03-18T21:38:50.214Z", - "contributors": [ - "loella16" - ] - }, "Web/API/Element/tagName": { "modified": "2019-03-23T23:53:29.906Z", "contributors": [ @@ -45046,6 +45040,12 @@ "loella16" ] }, + "orphaned/Web/API/Element/tabStop": { + "modified": "2019-03-18T21:38:50.214Z", + "contributors": [ + "loella16" + ] + }, "orphaned/Web/API/ElementTraversal": { "modified": "2019-03-18T21:39:02.443Z", "contributors": [ 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")}}

diff --git a/files/fr/web/api/element/tabstop/index.html b/files/fr/web/api/element/tabstop/index.html deleted file mode 100644 index 8b9103a70b..0000000000 --- a/files/fr/web/api/element/tabstop/index.html +++ /dev/null @@ -1,30 +0,0 @@ ---- -title: Element.tabStop -slug: Web/API/Element/tabStop -tags: - - API - - DOM - - Element - - Propriétés - - touche tabulation -translation_of: 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