html5/workers Overview.html,1.246,1.247

Update of /sources/public/html5/workers
In directory hutz:/tmp/cvs-serv17132

Modified Files:
	Overview.html 
Log Message:
Make self.close() in a worker not close the ports until after the worker has ended. (whatwg r5061)

Index: Overview.html
===================================================================
RCS file: /sources/public/html5/workers/Overview.html,v
retrieving revision 1.246
retrieving revision 1.247
diff -u -d -r1.246 -r1.247
--- Overview.html	14 Apr 2010 20:00:59 -0000	1.246
+++ Overview.html	17 Apr 2010 00:58:24 -0000	1.247
@@ -183,7 +183,7 @@
    <p><a href="http://www.w3.org/"><img alt="W3C" height="48" src="http://www.w3.org/Icons/w3c_home" width="72"></a></p>
    <h1>Web Workers</h1>
 
-   <h2 class="no-num no-toc" id="editor-s-draft-14-april-2010">Editor's Draft 14 April 2010</h2>
+   <h2 class="no-num no-toc" id="editor-s-draft-17-april-2010">Editor's Draft 17 April 2010</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>
@@ -244,7 +244,7 @@
   Working Group</a> is the W3C working group responsible for this
   specification's progress along the W3C Recommendation track.
 
-  This specification is the 14 April 2010 Editor's Draft.
+  This specification is the 17 April 2010 Editor's Draft.
   </p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- relationship to other work (required) --><p>This specification is also being produced by the <a href="http://www.whatwg.org/">WHATWG</a>. The two specifications are
   identical from the table of contents onwards.</p><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- context and rationale (required) --><p>This specification is intended to specify a part of the Web
   platform closely related to HTML5. It is defined in a separate
@@ -1138,9 +1138,6 @@
    <a href="#dom-workerglobalscope-closing" title="dom-WorkerGlobalScope-closing">closing</a> flag to
    true. (This prevents any further tasks from being queued.)</li>
 
-   <li><p>Disentangle all the ports in the list of <a href="#the-worker-s-ports">the worker's
-   ports</a>.</li>
-
   </ol><p>The following are the <span>event handlers</span> (and their
   corresponding <span title="event handler event type">event handler
   event types</span>) that must be supported, as IDL attributes, by
@@ -1450,6 +1447,13 @@
 
    </li>
 
+   <li>
+
+    <p>Disentangle all the ports in the list of <a href="#the-worker-s-ports">the worker's
+    ports</a>.</p>
+
+   </li>
+
 <!-- v2-onclose
    <li>
 

Received on Saturday, 17 April 2010 00:58:28 UTC