aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/shadowroot/innerhtml/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/shadowroot/innerhtml/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/shadowroot/innerhtml/index.html')
-rw-r--r--files/fr/web/api/shadowroot/innerhtml/index.html40
1 files changed, 0 insertions, 40 deletions
diff --git a/files/fr/web/api/shadowroot/innerhtml/index.html b/files/fr/web/api/shadowroot/innerhtml/index.html
deleted file mode 100644
index 5580e5ad2c..0000000000
--- a/files/fr/web/api/shadowroot/innerhtml/index.html
+++ /dev/null
@@ -1,40 +0,0 @@
----
-title: ShadowRoot.innerHTML
-slug: Web/API/ShadowRoot/innerHTML
-tags:
- - API
- - Propriété
- - Reference
- - ShadowRoot
- - innerHTML
- - shadow dom
-translation_of: Web/API/ShadowRoot/innerHTML
----
-<div>{{APIRef("Shadow DOM")}}</div>
-
-<p>La propriété <strong><code>innerHTML</code></strong>, rattachée à l'interface {{domxref("ShadowRoot")}}, permet de définir ou de récupérer une référence à l'arbre DOM contenu dans la racine <code>ShadowRoot</code>.</p>
-
-<h2 id="Syntaxe">Syntaxe</h2>
-
-<pre class="syntaxbox">var <em>domString</em> = <em>shadowRoot</em>.innerHTML
-<em>shadowRoot</em>.innerHTML = <em>domString</em>
-</pre>
-
-<h3 id="Valeur">Valeur</h3>
-
-<p>Une chaîne de caractères {{domxref("DOMString")}}.</p>
-
-<h2 id="Exemples">Exemples</h2>
-
-<pre class="brush: js">let customElem = document.querySelector('mon-element-shadow-dom');
-let shadow = customElem.shadowRoot;
-
-shadow.innerHTML = '&lt;strong&gt;Cet élément devrait être plus important !&lt;/strong&gt;';</pre>
-
-<h2 id="Spécifications">Spécifications</h2>
-
-<p>Cette propriété ne fait pas encore partie d'une spécification. Voir <a href="https://github.com/w3c/DOM-Parsing/issues/21">cette <em>issue</em></a> pour le projet de spécification.</p>
-
-<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
-
-<p>{{Compat("api.ShadowRoot.innerHTML")}}</p>