CVS html5/eventsource

Update of /sources/public/html5/eventsource
In directory roscoe:/tmp/cvs-serv19891

Modified Files:
	Overview.html 
Log Message:
Strip a leading BOM from scripts in workers, if any. Also, use more of the encoding spec. (whatwg r7782)

--- /sources/public/html5/eventsource/Overview.html	2013/03/25 23:36:41	1.237
+++ /sources/public/html5/eventsource/Overview.html	2013/03/29 18:45:31	1.238
@@ -216,7 +216,7 @@
 
    <h1>Server-Sent Events</h1>
    
-   <h2 class="no-num no-toc" id="editor-s-draft-25-march-2013">Editor's Draft 25 March 2013</h2>
+   <h2 class="no-num no-toc" id="editor-s-draft-29-march-2013">Editor's Draft 29 March 2013</h2>
    <dl><dt>Latest Published Version:</dt>
     <dd><a href="http://www.w3.org/TR/eventsource/">http://www.w3.org/TR/eventsource/</a></dd>
     <dt>Latest Editor's Draft:</dt>
@@ -354,7 +354,7 @@
   </dl><p>The W3C <a href="http://www.w3.org/2008/webapps/">Web Applications
   Working Group</a> is the W3C working group responsible for this
   specification's progress along the W3C Recommendation track.
-  This specification is the 25 March 2013 Editor's Draft.
+  This specification is the 29 March 2013 Editor's Draft.
   </p>
 
   
@@ -858,14 +858,10 @@
 
   <h2 id="event-stream-interpretation"><span class="secno">7 </span>Interpreting an event stream</h2>
 
-  <p>Streams must be <span>decoded as UTF-8, with error
-  handling</span>.
-  
-  <a href="#refsHTML">[HTML]</a>
-  
-  </p>
+  <p>Streams must be decoded using the <span>UTF-8 decode</span> algorithm.</p>
 
-  <p>One leading U+FEFF BYTE ORDER MARK character must be ignored if any are present.</p>
+  <p class="note">The <span>UTF-8 decode</span> algorithm strips one leading UTF-8 Byte Order Mark
+  (BOM), if any.</p>
 
   <p>The stream must then be parsed by reading everything line by line, with a U+000D CARRIAGE
   RETURN U+000A LINE FEED (CRLF) character pair, a single U+000A LINE FEED (LF) character not

Received on Friday, 29 March 2013 18:45:33 UTC