aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/xmldocument/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr/web/api/xmldocument/index.md')
-rw-r--r--files/fr/web/api/xmldocument/index.md62
1 files changed, 62 insertions, 0 deletions
diff --git a/files/fr/web/api/xmldocument/index.md b/files/fr/web/api/xmldocument/index.md
new file mode 100644
index 0000000000..49d925793b
--- /dev/null
+++ b/files/fr/web/api/xmldocument/index.md
@@ -0,0 +1,62 @@
+---
+title: XMLDocument
+slug: Web/API/XMLDocument
+tags:
+ - API
+ - DOM
+ - Experimental
+translation_of: Web/API/XMLDocument
+---
+<p>{{ ApiRef("DOM") }} {{SeeCompatTable}}</p>
+
+<p>L'interface XMLDocument représente un document XML. Elle hérite du {{domxref("Document")}} générique et ne lui ajoute aucune méthode ou propriété spécifique : néanmoins, plusieurs algorithmes se comportent différemment avec les deux types de documents.</p>
+
+<h2 id="Propriété">Propriété</h2>
+
+<p><em>Cette interface n'a pas de propriété spécifique et n'en hérite aucune.</em></p>
+
+<h2 id="Méthodes">Méthodes</h2>
+
+<p><em>Cette interface n'ajoute aucune nouvelle méthode.</em></p>
+
+<dl>
+ <dt>{{domxref("XMLDocument.load()")}}</dt>
+ <dd>Charge un document XML.</dd>
+</dl>
+
+<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("HTML WHATWG", 'dom.html#xmldocument', "Extension to XMLDocument")}}</td>
+ <td>{{Spec2('HTML WHATWG')}}</td>
+ <td>Pas de changement par rapport à {{SpecName("HTML5 W3C")}}</td>
+ </tr>
+ <tr>
+ <td>{{SpecName("HTML5 W3C", "dom.html#loading-xml-documents", "Extension to XMLDocument")}}</td>
+ <td>{{Spec2('HTML5 W3C')}}</td>
+ <td>Ajoute la méthode <code>load()</code>.</td>
+ </tr>
+ <tr>
+ <td>{{SpecName('DOM WHATWG', '#xmldocument', 'XMLDocument')}}</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.XMLDocument")}}</p>
+
+<h2 id="Voir_aussi">Voir aussi</h2>
+
+<ul>
+ <li><a href="/fr/docs/Web/API/Document_Object_Model">Référence du DOM</a></li>
+</ul>