hixie: Add text to handle external XML formats just like we handle internal XML formats. (whatwg r4513)

hixie: Add text to handle external XML formats just like we handle
internal XML formats. (whatwg r4513)

http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.3609&r2=1.3610&f=h
http://html5.org/tools/web-apps-tracker?from=4512&to=4513

===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.3609
retrieving revision 1.3610
diff -u -d -r1.3609 -r1.3610
--- Overview.html 6 Jan 2010 07:56:26 -0000 1.3609
+++ Overview.html 6 Jan 2010 08:28:06 -0000 1.3610
@@ -11062,7 +11062,7 @@
       <p>Initialize <dfn id="the-script-block-s-source"><var>the script block's source</var></dfn> as
       follows:</p>
 
-      <dl class="switch"><dt>If the script is from an external file</dt>
+      <dl class="switch"><dt>If the script is from an external file and <var><a href="#the-script-block-s-type">the script block's type</a></var> is a text-based language</dt>
 
        <dd>
 
@@ -11107,6 +11107,17 @@
 
        </dd>
 
+       <dt>If the script is from an external file and <var><a href="#the-script-block-s-type">the script block's type</a></var> is an XML-based language</dt>
+
+       <dd>
+
+        <p>The external file is the script source. When it is later
+        executed, it must be interpreted in a manner consistent with
+        the specification defining the language given by <var><a href="#the-script-block-s-type">the
+        script block's type</a></var>.</p>
+
+       </dd>
+
        <dt>If the script is inline and <var><a href="#the-script-block-s-type">the script block's type</a></var> is a text-based language</dt>
 
        <dd>
@@ -41620,7 +41631,7 @@
 
   </div>
 
-  </div><h3 id="the-window-object"><span class="secno">6.3 </span>The <code><a href="#window">Window</a></code> object</h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i><pre class="idl">[OverrideBuiltins]
+  </div><h3 id="the-window-object"><span class="secno">6.3 </span>The <code><a href="#window">Window</a></code> object</h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i><pre class="idl">[OverrideBuiltins, ReplaceableNamedProperties] <!-- XXX http://www.w3.org/Bugs/Public/show_bug.cgi?id=8241 -->
 interface <dfn id="window">Window</dfn> {
   // the current browsing context
   readonly attribute <a href="#windowproxy">WindowProxy</a> <a href="#dom-window" title="dom-window">window</a>;

Received on Wednesday, 6 January 2010 08:28:51 UTC