aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/node/getrootnode/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr/web/api/node/getrootnode/index.md')
-rw-r--r--files/fr/web/api/node/getrootnode/index.md89
1 files changed, 89 insertions, 0 deletions
diff --git a/files/fr/web/api/node/getrootnode/index.md b/files/fr/web/api/node/getrootnode/index.md
new file mode 100644
index 0000000000..5a6297d55b
--- /dev/null
+++ b/files/fr/web/api/node/getrootnode/index.md
@@ -0,0 +1,89 @@
+---
+title: Node.getRootNode()
+slug: Web/API/Node/getRootNode
+tags:
+ - API
+ - DOM
+ - Méthodes
+ - Noeuds
+ - Racine
+translation_of: Web/API/Node/getRootNode
+---
+<p>{{APIRef("DOM")}}</p>
+
+<p>La méthode <strong><code>getRootNode()</code></strong> de l'interface {{domxref("Node")}} renvoie le contexte de la racine de l'objet, qui peut optionnellement inclure la racine "shadow" si elle est disponible.</p>
+
+<h2 id="Syntaxe">Syntaxe</h2>
+
+<pre class="syntaxbox">var root = node.getRootNode(options)</pre>
+
+<h3 id="Paramètres">Paramètres</h3>
+
+<dl>
+ <dt>options {{optional_inline}}</dt>
+ <dd>Un objet qui définit les options pour obtenir le noeud racine. Les options disponibles sont :
+ <ul>
+ <li><code>composed</code> : un {{jsxref('Boolean')}} (<em>booléen</em>) qui indique si la racine shadow doit être retournée (<code>false</code> (<em>faux</em>) par défaut) ou un noeud racine au-delà de la racine shadow (<code>true</code>).</li>
+ </ul>
+ </dd>
+</dl>
+
+<h3 id="Retourne">Retourne</h3>
+
+<p>Une interface {{domxref('Node')}}.</p>
+
+<h2 id="Exemple">Exemple</h2>
+
+<p>Le premier exemple retourne une référence au noeud HTML/document lorsqu'il est exécuté dans les navigateurs de support :</p>
+
+<pre class="brush: js">rootNode = node.getRootNode();</pre>
+
+<p>Cet exemple plus complexe montre la différence entre retourner une racine normale et une racine qui inclut la racine shadow (voir le <a href="https://github.com/jserz/js_piece/blob/master/DOM/Node/getRootNode()/demo/getRootNode.html">code source complet</a>):</p>
+
+<pre class="brush: html">&lt;!-- source: https://github.com/jserz/js_piece/blob/master/DOM/Node/getRootNode()/demo/getRootNode.html --&gt;
+&lt;div class="js-parent"&gt;
+ &lt;div class="js-child"&gt;&lt;/div&gt;
+&lt;/div&gt;
+&lt;div class="js-shadowHost"&gt;&lt;/div&gt;
+&lt;script&gt;
+ // work on Chrome 54+,Opera41+
+
+ var parent = document.querySelector('.js-parent'),
+ child = document.querySelector('.js-child'),
+ shadowHost = document.querySelector('.js-shadowHost');
+
+ console.log(parent.getRootNode().nodeName); // #document
+ console.log(child.getRootNode().nodeName); // #document
+
+ // create a ShadowRoot
+ var shadowRoot = shadowHost.attachShadow({mode:'open'});
+ shadowRoot.innerHTML = '&lt;style&gt;div{background:#2bb8aa;}&lt;/style&gt;'
+ + '&lt;div class="js-shadowChild"&gt;content&lt;/div&gt;';
+ var shadowChild = shadowRoot.querySelector('.js-shadowChild');
+
+ // The default value of composed is false
+ console.log(shadowChild.getRootNode() === shadowRoot); // true
+ console.log(shadowChild.getRootNode({composed:false}) === shadowRoot); // true
+ console.log(shadowChild.getRootNode({composed:true}).nodeName); // #document
+&lt;/script&gt;</pre>
+
+<h2 id="Spécifications">Spécifications</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="col">Spécification</th>
+ <th scope="col">Statut</th>
+ <th scope="col">Commentaire</th>
+ </tr>
+ <tr>
+ <td>{{SpecName('DOM WHATWG','#dom-node-getrootnode','getRootNode()')}}</td>
+ <td>{{Spec2('DOM WHATWG')}}</td>
+ <td>Définition initiale.</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
+
+<p>{{Compat("api.Node.getRootNode")}}</p> \ No newline at end of file