aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/htmlcontentelement/select/index.html
diff options
context:
space:
mode:
authorjulieng <julien.gattelier@gmail.com>2021-10-02 17:20:14 +0200
committerSphinxKnight <SphinxKnight@users.noreply.github.com>2021-10-02 17:30:20 +0200
commitc05efa8d7ae464235cf83d7c0956e42dc6974103 (patch)
tree6ea911b2f2010f63a026de6bb7a1a51e7690a7e1 /files/fr/web/api/htmlcontentelement/select/index.html
parent13a5e017558b248ee1647d4a5825f183b51f09ad (diff)
downloadtranslated-content-c05efa8d7ae464235cf83d7c0956e42dc6974103.tar.gz
translated-content-c05efa8d7ae464235cf83d7c0956e42dc6974103.tar.bz2
translated-content-c05efa8d7ae464235cf83d7c0956e42dc6974103.zip
move *.html to *.md
Diffstat (limited to 'files/fr/web/api/htmlcontentelement/select/index.html')
-rw-r--r--files/fr/web/api/htmlcontentelement/select/index.html51
1 files changed, 0 insertions, 51 deletions
diff --git a/files/fr/web/api/htmlcontentelement/select/index.html b/files/fr/web/api/htmlcontentelement/select/index.html
deleted file mode 100644
index f5b8eda778..0000000000
--- a/files/fr/web/api/htmlcontentelement/select/index.html
+++ /dev/null
@@ -1,51 +0,0 @@
----
-title: HTMLContentElement.select
-slug: Web/API/HTMLContentElement/select
-tags:
- - API
- - HTML DOM
- - Property
- - Référence(2)
- - Web Components
-translation_of: Web/API/HTMLContentElement/select
----
-<p>{{ APIRef("Web Components") }}</p>
-
-<p>La propriété <code><strong>HTMLContentElement.select</strong></code> represente l'attribut <code>select</code>. La valeur de retour est une liste de sélecteurs CSS séparés par des espaces. Ils récupèrent le contenu à inserer à la place de l'élément <code>&lt;content&gt;</code>.</p>
-
-<h2 id="Syntaxe">Syntaxe</h2>
-
-<pre class="syntaxbox"><em>object</em>.select = "<em>CSSselector</em> <em>CSSselector</em> ...";
-</pre>
-
-<h2 id="Specifications">Exemple</h2>
-
-<pre class="brush: js">// Choisi les éléments &lt;h1&gt; et les elements avec la class "error"
-myContentObject.select = "h1 .error";</pre>
-
-<h2 id="Specifications">Spécifications</h2>
-
-<table class="standard-table">
- <tbody>
- <tr>
- <th scope="col">Specification</th>
- <th scope="col">Status</th>
- <th scope="col">Comment</th>
- </tr>
- <tr>
- <td>{{SpecName('Shadow DOM', '#the-content-element', 'content')}}</td>
- <td>{{Spec2('Shadow DOM')}}</td>
- <td> </td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Browser_compatibility">Compatibilité des navigateurs</h2>
-
-<p>{{Compat("api.HTMLContentElement.getDistributedNodes")}}</p>
-
-<h2 id="See_also">Voir aussi</h2>
-
-<ul>
- <li><a href="/fr/docs/Web/API/HTMLContentElement">HTMLContentElement</a></li>
-</ul>