Skip to content

Commit

Permalink
[e] (0) Add a reference to DOM for XMLDocument
Browse files Browse the repository at this point in the history
Fixing https://www.w3.org/Bugs/Public/show_bug.cgi?id=25922
Affected topics: DOM APIs

git-svn-id: http://svn.whatwg.org/webapps@8651 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed May 30, 2014
1 parent 88f8bf1 commit da28f1c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions complete.html
Expand Up @@ -3697,6 +3697,7 @@ <h4 id=dependencies><span class=secno>2.2.2 </span>Dependencies</h4>
<li><dfn id=comment-0><code>Comment</code></dfn> interface</li>
<li><dfn id=domimplementation><code>DOMImplementation</code></dfn> interface</li>
<li><dfn id=dom-document title="DOM Document"><code>Document</code></dfn> interface</li>
<li><dfn id=xmldocument><code>XMLDocument</code></dfn> interface</li>
<li><dfn id=documentfragment><code>DocumentFragment</code></dfn> interface</li>
<li><dfn id=documenttype><code>DocumentType</code></dfn> interface</li>
<li><dfn id=domexception><code>DOMException</code></dfn> interface</li>
Expand Down Expand Up @@ -9201,7 +9202,7 @@ <h4 id=dom-tree-accessors><span class=secno>3.1.3 </span><dfn>DOM tree accessors

<h4 id=loading-xml-documents><span class=secno>3.1.4 </span>Loading XML documents</h4>

<pre class=idl>partial interface <dfn id=xmldocument>XMLDocument</dfn> {
<pre class=idl>partial interface <a href=#xmldocument>XMLDocument</a> {
<!--SYNCLOAD attribute boolean <span title="dom-XMLDocument-async">async</span>;
--> boolean <a href=#dom-xmldocument-load title=dom-XMLDocument-load>load</a>(DOMString url);
};</pre>
Expand Down Expand Up @@ -103912,7 +103913,6 @@ <h3 class="no-num">Reflecting IDL attributes</h3>
<li><code><a href=#workerglobalscope>WorkerGlobalScope</a></code>, <a href=#WorkerGlobalScope-partial>partial</a>
<li><code><a href=#workerlocation>WorkerLocation</a></code>
<li><code><a href=#workernavigator>WorkerNavigator</a></code>
<li><code>XMLDocument</code>, <a href=#xmldocument>partial</a>
</ul>


Expand Down
4 changes: 2 additions & 2 deletions index
Expand Up @@ -3697,6 +3697,7 @@ a.setAttribute('href', 'http://example.com/'); // change the content attribute d
<li><dfn id=comment-0><code>Comment</code></dfn> interface</li>
<li><dfn id=domimplementation><code>DOMImplementation</code></dfn> interface</li>
<li><dfn id=dom-document title="DOM Document"><code>Document</code></dfn> interface</li>
<li><dfn id=xmldocument><code>XMLDocument</code></dfn> interface</li>
<li><dfn id=documentfragment><code>DocumentFragment</code></dfn> interface</li>
<li><dfn id=documenttype><code>DocumentType</code></dfn> interface</li>
<li><dfn id=domexception><code>DOMException</code></dfn> interface</li>
Expand Down Expand Up @@ -9201,7 +9202,7 @@ partial /*sealed*/ interface <dfn id=document>Document</dfn> {

<h4 id=loading-xml-documents><span class=secno>3.1.4 </span>Loading XML documents</h4>

<pre class=idl>partial interface <dfn id=xmldocument>XMLDocument</dfn> {
<pre class=idl>partial interface <a href=#xmldocument>XMLDocument</a> {
<!--SYNCLOAD attribute boolean <span title="dom-XMLDocument-async">async</span>;
--> boolean <a href=#dom-xmldocument-load title=dom-XMLDocument-load>load</a>(DOMString url);
};</pre>
Expand Down Expand Up @@ -103912,7 +103913,6 @@ if (s = prompt('What is your name?')) {
<li><code><a href=#workerglobalscope>WorkerGlobalScope</a></code>, <a href=#WorkerGlobalScope-partial>partial</a>
<li><code><a href=#workerlocation>WorkerLocation</a></code>
<li><code><a href=#workernavigator>WorkerNavigator</a></code>
<li><code>XMLDocument</code>, <a href=#xmldocument>partial</a>
</ul>


Expand Down
3 changes: 2 additions & 1 deletion source
Expand Up @@ -2433,6 +2433,7 @@ a.setAttribute('href', 'http://example.com/'); // change the content attribute d
<li><dfn><code>Comment</code></dfn> interface</li>
<li><dfn><code>DOMImplementation</code></dfn> interface</li>
<li><dfn data-x="DOM Document"><code>Document</code></dfn> interface</li>
<li><dfn><code>XMLDocument</code></dfn> interface</li>
<li><dfn><code>DocumentFragment</code></dfn> interface</li>
<li><dfn><code>DocumentType</code></dfn> interface</li>
<li><dfn><code>DOMException</code></dfn> interface</li>
Expand Down Expand Up @@ -8992,7 +8993,7 @@ partial /*sealed*/ interface <dfn>Document</dfn> {

<h4>Loading XML documents</h4>

<pre class="idl">partial interface <dfn>XMLDocument</dfn> {
<pre class="idl">partial interface <span>XMLDocument</span> {
<!--SYNCLOAD attribute boolean <span data-x="dom-XMLDocument-async">async</span>;
--> boolean <span data-x="dom-XMLDocument-load">load</span>(DOMString url);
};</pre>
Expand Down

0 comments on commit da28f1c

Please sign in to comment.