diff options
author | julieng <julien.gattelier@gmail.com> | 2021-10-02 17:20:14 +0200 |
---|---|---|
committer | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-10-02 17:30:20 +0200 |
commit | c05efa8d7ae464235cf83d7c0956e42dc6974103 (patch) | |
tree | 6ea911b2f2010f63a026de6bb7a1a51e7690a7e1 /files/fr/web/api/shadowroot/delegatesfocus/index.html | |
parent | 13a5e017558b248ee1647d4a5825f183b51f09ad (diff) | |
download | translated-content-c05efa8d7ae464235cf83d7c0956e42dc6974103.tar.gz translated-content-c05efa8d7ae464235cf83d7c0956e42dc6974103.tar.bz2 translated-content-c05efa8d7ae464235cf83d7c0956e42dc6974103.zip |
move *.html to *.md
Diffstat (limited to 'files/fr/web/api/shadowroot/delegatesfocus/index.html')
-rw-r--r-- | files/fr/web/api/shadowroot/delegatesfocus/index.html | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/files/fr/web/api/shadowroot/delegatesfocus/index.html b/files/fr/web/api/shadowroot/delegatesfocus/index.html deleted file mode 100644 index a42192a6a2..0000000000 --- a/files/fr/web/api/shadowroot/delegatesfocus/index.html +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: ShadowRoot.delegatesFocus -slug: Web/API/ShadowRoot/delegatesFocus -tags: - - API - - Non-standard - - Propriété - - Reference - - ShadowRoot -translation_of: Web/API/ShadowRoot/delegatesFocus ---- -<div>{{APIRef("Shadow DOM")}}</div> - -<p><strong><code>delegatesFocus</code></strong> est une propriété en lecture seule, rattachée à l'interface {{domxref("ShadowRoot")}} et qui renvoie un booléen indiquant si l'option <code>delegatesFocus</code> a été intialisée lors de l'attachement de la racine <em>shadow</em> (cf. {{domxref("Element.attachShadow()")}}).</p> - -<div class="warning"> -<p><strong>Attention :</strong> Cette fonctionnalité est expérimentale, non-standard et uniquement disponible dans Chrome.</p> -</div> - -<h2 id="Syntaxe">Syntaxe</h2> - -<pre class="syntaxbox">var <var>df</var> = <var>shadowRoot</var>.delegatesFocus</pre> - -<h3 id="Valeur">Valeur</h3> - -<p>Un booléen : <code>true</code> si la racine <em>shadow</em> délègue la gestion du focus et <code>false</code> sinon.</p> - -<h2 id="Exemples">Exemples</h2> - -<pre class="brush: js">let customElem = document.querySelector('mon-element-shadow-dom'); -let shadow = customElem.shadowRoot; - - ... - -// Est-ce que la racine gère la délégation du focus ? -let hostElem = shadow.delegatesFocus;</pre> - -<h2 id="Spécifications">Spécifications</h2> - -<p>Cette fonctionnalité n'est actuellement décrite dans aucune spécification.</p> - -<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> - -<p>{{Compat("api.ShadowRoot.delegatesFocus")}}</p> |