hixie: Move XMLDocumentLoader.load to XMLDocument. (whatwg r6719)

hixie: Move XMLDocumentLoader.load to XMLDocument. (whatwg r6719)

http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.5386&r2=1.5387&f=h
http://html5.org/tools/web-apps-tracker?from=6718&to=6719

===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.5386
retrieving revision 1.5387
diff -u -d -r1.5386 -r1.5387
--- Overview.html 20 Oct 2011 23:04:53 -0000 1.5386
+++ Overview.html 20 Oct 2011 23:07:12 -0000 1.5387
@@ -8250,24 +8250,18 @@
 
   <h4 id="loading-xml-documents"><span class="secno">3.1.5 </span>Loading XML documents</h4>
 
-  <p>A <code><a href="#document">Document</a></code> object that is an <a href="#xml-documents" title="XML
-  documents">XML document</a> that was created by the <code title="dom-DOMImplementation-createDocument"><a href="#dom-domimplementation-createdocument">DOMImplementation.createDocument()</a></code>
-  factory method must also implement the
-  <code><a href="#xmldocumentloader">XMLDocumentLoader</a></code> interface:</p>
-
-  <pre class="idl">[NoInterfaceObject]
-interface <dfn id="xmldocumentloader">XMLDocumentLoader</dfn> {
-  boolean <a href="#dom-xmldocumentloader-load" title="dom-XMLDocumentLoader-load">load</a>(DOMString url);
+  <pre class="idl">partial interface <dfn id="xmldocument">XMLDocument</dfn> {
+  boolean <a href="#dom-xmldocument-load" title="dom-XMLDocument-load">load</a>(DOMString url);
 };</pre>
 
   
   
   
 
-  <p>The <dfn id="dom-xmldocumentloader-load" title="dom-XMLDocumentLoader-load"><code>load(<var title="">url</var>)</code></dfn> method must run the following
+  <p>The <dfn id="dom-xmldocument-load" title="dom-XMLDocument-load"><code>load(<var title="">url</var>)</code></dfn> method must run the following
   steps:</p>
 
-  <ol><li><p>Let <var title="">document</var> be the <code><a href="#document">Document</a></code>
+  <ol><li><p>Let <var title="">document</var> be the <code><a href="#xmldocument">XMLDocument</a></code>
    object on which the method was invoked.</li>
 
    <li><p><a href="#resolve-a-url" title="resolve a url">Resolve</a> the method's

Received on Thursday, 20 October 2011 23:07:24 UTC