diff options
Diffstat (limited to 'files/pt-br/web/api/xmldocument/index.html')
-rw-r--r-- | files/pt-br/web/api/xmldocument/index.html | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/files/pt-br/web/api/xmldocument/index.html b/files/pt-br/web/api/xmldocument/index.html new file mode 100644 index 0000000000..ddfbeaaac3 --- /dev/null +++ b/files/pt-br/web/api/xmldocument/index.html @@ -0,0 +1,61 @@ +--- +title: DocumentoXML +slug: Web/API/XMLDocument +tags: + - API + - DOM + - DocumentoXML + - Experimental + - Interface +translation_of: Web/API/XMLDocument +--- +<div>{{APIRef("DOM")}}{{SeeCompatTable}}</div> + +<p>A interface <strong>XMLDocument</strong> representa um document XML. Ele herda de {{DOMxRef("Document")}} e não adiciona nenhum método específico ou propriedades para este: no entanto, alguns algoritmos tem comportamento diferente com os dois tipos de documentos.</p> + +<h2 id="Propridades">Propridades</h2> + +<p><em>Esta interface não tem e nem herda nenhuma propriedade específica.</em></p> + +<h2 id="Metodos">Metodos</h2> + +<p><em>Esta interface não adiciona nenhum método novo.</em></p> + +<dl> + <dt>{{DOMxRef("XMLDocument.load()")}} {{Non-standard_Inline}} {{Deprecated_Inline}}</dt> + <dd>Carrega um documento XML</dd> +</dl> + +<h2 id="Especificações">Especificações</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Especificação</th> + <th scope="col">Status</th> + <th scope="col">Comentário</th> + </tr> + <tr> + <td>{{SpecName("DOM WHATWG", "#xmldocument", "XMLDocument")}}</td> + <td>{{Spec2("DOM WHATWG")}}</td> + <td>Sem alterações.</td> + </tr> + <tr> + <td>{{SpecName("DOM4", "#xmldocument", "XMLDocument")}}</td> + <td>{{Spec2("DOM4")}}</td> + <td>Definição Inicial.</td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilidade_com_Navegadores">Compatibilidade com Navegadores</h2> + +<div class="hidden">A tabela de compatibilidade nesta página é gerada de dados estruturados. Se voce gostaria de contribuir com os dados, por favor, acesse <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> e faça um pull request.</div> + +<p>{{Compat("api.XMLDocument")}}</p> + +<h2 id="Veja_também">Veja também</h2> + +<ul> + <li><a href="/en-US/docs/DOM/DOM_Reference" title="/en-US/docs/DOM/DOM_Reference">Indice de interfaces DOM</a></li> +</ul> |