diff options
author | MDN <actions@users.noreply.github.com> | 2021-05-30 01:21:51 +0000 |
---|---|---|
committer | MDN <actions@users.noreply.github.com> | 2021-05-30 01:21:51 +0000 |
commit | f547adc9a91b22cdc678b4ec83e65c1e35cf72d5 (patch) | |
tree | bfed59f9e23d6606ea7d884081d8490e5f10694c /files/fr/orphaned | |
parent | 65142f47934a8c6ad7b33627c1cc8e1115c20ac2 (diff) | |
download | translated-content-f547adc9a91b22cdc678b4ec83e65c1e35cf72d5.tar.gz translated-content-f547adc9a91b22cdc678b4ec83e65c1e35cf72d5.tar.bz2 translated-content-f547adc9a91b22cdc678b4ec83e65c1e35cf72d5.zip |
[CRON] sync translated content
Diffstat (limited to 'files/fr/orphaned')
-rw-r--r-- | files/fr/orphaned/web/api/element/tabstop/index.html | 31 |
1 files changed, 31 insertions, 0 deletions
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 +--- +<p>{{APIRef("DOM")}}{{non-standard_header}}{{obsolete_header}}</p> + +<p>La propriété <strong><code>tabStop</code></strong> 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.</p> + +<p>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é <code>tabStop</code> 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 <a href="https://docs.google.com/document/d/1k93Ez6yNSyWQDtGjdJJqTBPmljk9l2WS3JTe5OHHB50/edit">documentation de conception</a> (en) et remplacée par {{domxref("ShadowRoot.delegatesFocus")}}.</p> + +<h2 id="Syntaxe">Syntaxe</h2> + +<pre class="brush: js">var isTabStop = element.tabStop; +element.tabStop = (true|false); +</pre> + +<h2 id="Exemple">Exemple</h2> + +<pre class="brush: js">// TBD</pre> + +<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> + +<p>{{Compat("api.Element.tabStop")}}</p> |