aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/web/api/xmldocument
diff options
context:
space:
mode:
Diffstat (limited to 'files/pt-br/web/api/xmldocument')
-rw-r--r--files/pt-br/web/api/xmldocument/async/index.html37
-rw-r--r--files/pt-br/web/api/xmldocument/index.html61
2 files changed, 98 insertions, 0 deletions
diff --git a/files/pt-br/web/api/xmldocument/async/index.html b/files/pt-br/web/api/xmldocument/async/index.html
new file mode 100644
index 0000000000..63de77faea
--- /dev/null
+++ b/files/pt-br/web/api/xmldocument/async/index.html
@@ -0,0 +1,37 @@
+---
+title: Document.async
+slug: Web/API/XMLDocument/async
+translation_of: Web/API/XMLDocument/async
+---
+<p>{{APIRef("DOM")}}{{Deprecated_header}} {{Non-standard_header}}</p>
+
+<p><code>document.async </code>pode ser configurado para indicar se uma chamada {{domxref ("document.load")}} deve ser uma solicitação assíncrona ou síncrona. True é o valor padrão, indicando que os documentos devem ser carregados de forma assíncrona.</p>
+
+<p> </p>
+
+<p>(Carregamento de documentos assicronos a partir da versão 1.4 alpha.)</p>
+
+<h2 id="Exemplo">Exemplo</h2>
+
+<pre class="brush:js">function loadXMLData(e) {
+ alert(new XMLSerializer().serializeToString(e.target)); // Retorna o conteúdo de querydata.xml em String
+}
+
+var xmlDoc = document.implementation.createDocument("", "test", null);
+
+xmlDoc.async = false;
+xmlDoc.onload = loadXMLData;
+xmlDoc.load('querydata.xml');</pre>
+
+<h2 id="Specification" name="Specification">Especificação</h2>
+
+<ul>
+ <li><a href="http://www.w3.org/TR/DOM-Level-3-LS/load-save.html#LS-DocumentLS">DOM Level 3 Load &amp; Save module</a></li>
+</ul>
+
+<h2 id="Veja_também">Veja também</h2>
+
+<ul>
+ <li><a href="/en-US/docs/XML_in_Mozilla" title="XML_in_Mozilla">XML in Mozilla</a></li>
+ <li>{{domxref("document.load")}}</li>
+</ul>
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>