- From: CVS User ihickson <cvsmail@w3.org>
- Date: Fri, 02 Aug 2013 21:48:10 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/workers
In directory roscoe:/tmp/cvs-serv14286
Modified Files:
Overview.html
Log Message:
Rejigger how scripts are described. Work in progress. (whatwg r8124)
--- /sources/public/html5/workers/Overview.html 2013/08/01 20:44:15 1.392
+++ /sources/public/html5/workers/Overview.html 2013/08/02 21:48:09 1.393
@@ -216,7 +216,7 @@
<h1>Web Workers</h1>
- <h2 class="no-num no-toc" id="editor-s-draft-1-august-2013">Editor's Draft 1 August 2013</h2>
+ <h2 class="no-num no-toc" id="editor-s-draft-2-august-2013">Editor's Draft 2 August 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 1 August 2013 Editor's Draft.
+ This specification is the 2 August 2013 Editor's Draft.
</p>
@@ -1607,7 +1607,7 @@
environment</span>. (In either case, by definition, it is a <span>worker
environment</span>.)</li>
- <li>
+ <li><!-- SCRIPT EXEC -->
<p>A new <span title="concept-script">script</span> is now created, as follows.</p>
@@ -1616,8 +1616,7 @@
<p>Parse/compile/initialize <var title="">source</var> using that <span>script execution
environment</span>, as appropriate for <var title="">language</var>, and thus obtain a
- <span>list of code entry-points</span>; set the <i>initial code entry-point</i> to the
- entry-point for any executable code to be immediately run.</p>
+ <span>code entry-point</span>.</p>
<p>Set the <span>script's global object</span> to <var title="">worker global scope</var>.</p>
@@ -1655,7 +1654,7 @@
<li>
- <p><span title="jump to a code entry-point">Jump</span> to the <span title="concept-script">script</span>'s <i>initial code entry-point</i>, and let that run until
+ <p><span title="jump to a code entry-point">Jump</span> to the <span title="concept-script">script</span>'s <span>code entry-point</span>, and let that run until
it either returns, fails to catch an exception, or gets prematurely aborted by the "<a href="#kill-a-worker">kill a
worker</a>" or "<a href="#terminate-a-worker">terminate a worker</a>" algorithms defined below.</p>
Received on Friday, 2 August 2013 21:48:11 UTC