- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 24 Oct 2011 17:33:29 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv21194 Modified Files: Overview.html Log Message: Fix a race condition between setting src and firing onload for <track>. (whatwg r6732) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.5397 retrieving revision 1.5398 diff -u -d -r1.5397 -r1.5398 --- Overview.html 24 Oct 2011 17:15:54 -0000 1.5397 +++ Overview.html 24 Oct 2011 17:33:24 -0000 1.5398 @@ -26319,8 +26319,10 @@ <i>monitoring</i>.</p> <p>If the <a href="#fetch" title="fetch">fetching algorithm</a> does not - fail, then, when it completes, <a href="#queue-a-task">queue a task</a> to run - the following steps:</p> + fail, then the final <a href="#concept-task" title="concept-task">task</a> that + is <a href="#queue-a-task" title="queue a task">queued</a> by the + <a href="#networking-task-source">networking task source</a> must run the following + steps:</p> <ol><li><p>Change the <a href="#text-track-readiness-state">text track readiness state</a> to <a href="#text-track-loaded" title="text track loaded">loaded</a>.</li> @@ -26343,10 +26345,9 @@ </li> - </ol><p>Once that <a href="#concept-task" title="concept-task">task</a> is <a href="#queue-a-task" title="queue a task">queued</a>, move on to the step below - labeled <i>monitoring</i>.</p> + <li><p>Jump to the step below labeled <i>monitoring</i>.</li> - <p>If, while the <a href="#fetch" title="fetch">fetching algorithm</a> is + </ol><p>If, while the <a href="#fetch" title="fetch">fetching algorithm</a> is active, either:</p> <ul><li>the <a href="#track-url">track URL</a> changes so that it is no longer @@ -26363,12 +26364,9 @@ </ul><p>...then the user agent must run the following steps:</p> - <ol><li><p>Abort the <a href="#fetch" title="fetch">fetching - algorithm</a>.</li> - - <li><p><a href="#queue-a-task">Queue a task</a> to <a href="#fire-a-simple-event">fire a simple - event</a> named <code title="event-abort">abort</code> at - the <code><a href="#the-track-element">track</a></code> element.</li> + <ol><li><p>Abort the <a href="#fetch" title="fetch">fetching algorithm</a>, + discarding any pending <a href="#concept-task" title="concept-task">tasks</a> + generated by that algorithm.</li> <li><p>Let <var title="">URL</var> be the new <a href="#track-url">track URL</a>.</li>
Received on Monday, 24 October 2011 17:33:31 UTC