- From: CVS User ihickson <cvsmail@w3.org>
- Date: Fri, 29 Mar 2013 18:45:35 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/workers
In directory roscoe:/tmp/cvs-serv19932
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/workers/Overview.html 2013/03/05 20:26:34 1.369
+++ /sources/public/html5/workers/Overview.html 2013/03/29 18:45:35 1.370
@@ -216,7 +216,7 @@
<h1>Web Workers</h1>
- <h2 class="no-num no-toc" id="editor-s-draft-5-march-2013">Editor's Draft 5 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/workers/">http://www.w3.org/TR/workers/</a></dd>
<dt>Latest Editor's Draft:</dt>
@@ -353,7 +353,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 5 March 2013 Editor's Draft.
+ This specification is the 29 March 2013 Editor's Draft.
</p>
@@ -1570,12 +1570,8 @@
a simple event</span> named <code title="event-error">error</code> at that object. Abort these
steps.</p>
- <p>If the attempt succeeds, then let <var title="">source</var> be the script resource
- <span>decoded as UTF-8, with error handling</span>.
-
- <a href="#refsHTML">[HTML]</a>
-
- </p>
+ <p>If the attempt succeeds, then let <var title="">source</var> be the result of running the
+ <span>UTF-8 decode</span> algorithm on the script resource.</p>
<p>Let <var title="">language</var> be JavaScript.</p>
@@ -2225,13 +2221,8 @@
<code>NetworkError</code> exception and abort all these
steps.</p>
- <p>If the attempt succeeds, then let <var title="">source</var> be
- the script resource <span>decoded as UTF-8, with error
- handling</span>.
-
- <a href="#refsHTML">[HTML]</a>
-
- </p>
+ <p>If the attempt succeeds, then let <var title="">source</var> be the result of running the
+ <span>UTF-8 decode</span> algorithm on the script resource.</p>
<p>Let <var title="">language</var> be JavaScript.</p>
Received on Friday, 29 March 2013 18:45:37 UTC