html5/spec spec.html,1.1348,1.1349 the-button-element.html,1.42,1.43 webappapis.html,1.146,1.147

Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv15778

Modified Files:
	spec.html the-button-element.html webappapis.html 
Log Message:
Clarify what stopping a task means. (whatwg r5714)

[updated by splitter]


Index: the-button-element.html
===================================================================
RCS file: /sources/public/html5/spec/the-button-element.html,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -d -r1.42 -r1.43
--- the-button-element.html	5 Dec 2010 09:44:15 -0000	1.42
+++ the-button-element.html	8 Dec 2010 21:46:46 -0000	1.43
@@ -2111,7 +2111,7 @@
   a list of the element's <code><a href="forms.html#the-label-element">label</a></code>s. The <code title="dom-fae-form"><a href="association-of-controls-and-forms.html#dom-fae-form">form</a></code> IDL attribute is part of the
   element's forms API.</p>
 
-  </div><h4 id="the-meter-element"><span class="secno">4.10.17 </span>The <dfn><code>meter</code></dfn> element</h4><p class="XXX annotation"><span><a href="http://www.w3.org/html/wg/tracker/issues/97">ISSUE-97</a> (meter) blocks progress to Last Call</span></p><!-- Keep this after <progress> and NOT close to <time> --><dl class="element"><dt>Categories</dt>
+  </div><h4 id="the-meter-element"><span class="secno">4.10.17 </span>The <dfn><code>meter</code></dfn> element</h4><!-- Keep this after <progress> and NOT close to <time> --><dl class="element"><dt>Categories</dt>
    <dd><a href="content-models.html#flow-content">Flow content</a>.</dd>
    <dd><a href="content-models.html#phrasing-content">Phrasing content</a>.</dd>
    <dd><a href="forms.html#category-label" title="category-label">Labelable</a> <a href="forms.html#form-associated-element">form-associated element</a>.</dd>

Index: spec.html
===================================================================
RCS file: /sources/public/html5/spec/spec.html,v
retrieving revision 1.1348
retrieving revision 1.1349
diff -u -d -r1.1348 -r1.1349
--- spec.html	8 Dec 2010 01:46:38 -0000	1.1348
+++ spec.html	8 Dec 2010 21:46:46 -0000	1.1349
@@ -385,7 +385,7 @@
     <a href="Overview.html">single page HTML</a>,
     <a href="spec.html">multipage HTML</a>,
     <a href="author/">web developer edition</a>.
-This is revision 1.4578.
+This is revision 1.4579.
    </p> 
      <p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
    &#169; 2010 <a href="http://www.w3.org/"><abbr title="World Wide

Index: webappapis.html
===================================================================
RCS file: /sources/public/html5/spec/webappapis.html,v
retrieving revision 1.146
retrieving revision 1.147
diff -u -d -r1.146 -r1.147
--- webappapis.html	7 Dec 2010 00:47:15 -0000	1.146
+++ webappapis.html	8 Dec 2010 21:46:46 -0000	1.147
@@ -809,11 +809,14 @@
    <code><a href="infrastructure.html#document">Document</a></code>s are not <a href="browsers.html#fully-active">fully active</a>. The user
    agent may pick any <a href="#task-queue">task queue</a>.</p></li>
 
+   <!-- warning! if you renumber these steps, make sure to update the
+   "spin the event loop" algorith below! -->
+
    <li><p>If the <a href="#storage-mutex">storage mutex</a> is now owned by the
    <a href="#event-loop">event loop</a>, release it so that it is once again
-   free.</p>
+   free.</p></li>
 
-   </li><li><p>Remove that task from its <a href="#task-queue">task queue</a>.</p></li>
+   <li><p>Remove that task from its <a href="#task-queue">task queue</a>.</p></li>
 
    <li><p>If any asynchronously-running algorithms are <dfn id="await-a-stable-state" title="await a stable state">awaiting a stable state</dfn>, then
    run their <dfn id="synchronous-section">synchronous section</dfn> and then resume running
@@ -840,9 +843,16 @@
   <ol><li><p>Let <var title="">task source</var> be the <a href="#task-source">task
    source</a> of the currently running <a href="#concept-task" title="concept-task">task</a>.</p></li>
 
-   <li><p>Stop the currently running <a href="#concept-task" title="concept-task">task</a>, allowing the <a href="#event-loop">event
-   loop</a> to resume, but continue these steps
-   asynchronously.</p></li>
+   <li>
+
+    <p>Stop the currently running <a href="#concept-task" title="concept-task">task</a>, allowing the <a href="#event-loop">event
+    loop</a> to resume, but continue these steps
+    asynchronously.</p>
+
+    <p class="note">This causes the <a href="#event-loop">event loop</a> to move on
+    to the second step of its processing model (defined above).</p>
+
+   </li>
 
    <li><p>Wait until the condition <var title="">goal</var> is
    met.</p></li>

Received on Wednesday, 8 December 2010 21:46:50 UTC