html5/spec Overview.html,1.5386,1.5387

Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv14675

Modified Files:
	Overview.html 
Log Message:
Move XMLDocumentLoader.load to XMLDocument. (whatwg r6719)

Index: Overview.html
===================================================================
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:17 UTC