Skip to content

Commit

Permalink
[giow] (1) Oops, the 'list of scripts that will execute as soon as po…
Browse files Browse the repository at this point in the history
…ssible' was never having items removed from it. Also, it's a set, not a list.

git-svn-id: http://svn.whatwg.org/webapps@4853 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Mar 16, 2010
1 parent bb42cf7 commit 219f2cf
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 12 deletions.
10 changes: 6 additions & 4 deletions complete.html
Expand Up @@ -12922,14 +12922,16 @@ <h4 id=script><span class=secno>4.3.1 </span>The <dfn><code>script</code></dfn>

<dd>

<p>The element must be added to the end of the <dfn id=list-of-scripts-that-will-execute-as-soon-as-possible>list of
scripts that will execute as soon as possible</dfn>.</p>
<p>The element must be added to the <dfn id=set-of-scripts-that-will-execute-as-soon-as-possible>set of scripts that
will execute as soon as possible</dfn>.</p>

<p>The <a href=#concept-task title=concept-task>task</a> that the
<a href=#networking-task-source>networking task source</a> places on the <a href=#task-queue>task
queue</a> once the <a href=#fetch title=fetch>fetching
algorithm</a> has completed must <a href=#executing-a-script-block title="executing a
script block">execute the script block</a>.
script block">execute the script block</a> and then remove
the element from the <a href=#set-of-scripts-that-will-execute-as-soon-as-possible>set of scripts that will execute as
soon as possible</a>.</p>

</dd>

Expand Down Expand Up @@ -79551,7 +79553,7 @@ <h4 id=the-end><span class=secno>12.2.6 </span>The end</h4>
event</a> named <code title=event-DOMContentLoaded>DOMContentLoaded</code> at the
<code><a href=#document>Document</a></code>.</li>

<li><p><a href=#spin-the-event-loop>Spin the event loop</a> until the <a href=#list-of-scripts-that-will-execute-as-soon-as-possible>list of
<li><p><a href=#spin-the-event-loop>Spin the event loop</a> until the <a href=#set-of-scripts-that-will-execute-as-soon-as-possible>set of
scripts that will execute as soon as possible</a> is
empty.</li> <!-- this step is redundant with the next one,
really, since all those scripts also delay the load event. It's
Expand Down
10 changes: 6 additions & 4 deletions index
Expand Up @@ -12821,14 +12821,16 @@ c-end = "--&gt;"</pre>

<dd>

<p>The element must be added to the end of the <dfn id=list-of-scripts-that-will-execute-as-soon-as-possible>list of
scripts that will execute as soon as possible</dfn>.</p>
<p>The element must be added to the <dfn id=set-of-scripts-that-will-execute-as-soon-as-possible>set of scripts that
will execute as soon as possible</dfn>.</p>

<p>The <a href=#concept-task title=concept-task>task</a> that the
<a href=#networking-task-source>networking task source</a> places on the <a href=#task-queue>task
queue</a> once the <a href=#fetch title=fetch>fetching
algorithm</a> has completed must <a href=#executing-a-script-block title="executing a
script block">execute the script block</a>.
script block">execute the script block</a> and then remove
the element from the <a href=#set-of-scripts-that-will-execute-as-soon-as-possible>set of scripts that will execute as
soon as possible</a>.</p>

</dd>

Expand Down Expand Up @@ -72957,7 +72959,7 @@ document.body.appendChild(text);
event</a> named <code title=event-DOMContentLoaded>DOMContentLoaded</code> at the
<code><a href=#document>Document</a></code>.</li>

<li><p><a href=#spin-the-event-loop>Spin the event loop</a> until the <a href=#list-of-scripts-that-will-execute-as-soon-as-possible>list of
<li><p><a href=#spin-the-event-loop>Spin the event loop</a> until the <a href=#set-of-scripts-that-will-execute-as-soon-as-possible>set of
scripts that will execute as soon as possible</a> is
empty.</li> <!-- this step is redundant with the next one,
really, since all those scripts also delay the load event. It's
Expand Down
10 changes: 6 additions & 4 deletions source
Expand Up @@ -13572,14 +13572,16 @@ c-end = "-->"</pre>

<dd>

<p>The element must be added to the end of the <dfn>list of
scripts that will execute as soon as possible</dfn>.</p>
<p>The element must be added to the <dfn>set of scripts that
will execute as soon as possible</dfn>.</p>

<p>The <span title="concept-task">task</span> that the
<span>networking task source</span> places on the <span>task
queue</span> once the <span title="fetch">fetching
algorithm</span> has completed must <span title="executing a
script block">execute the script block</span>.
script block">execute the script block</span> and then remove
the element from the <span>set of scripts that will execute as
soon as possible</span>.</p>

</dd>

Expand Down Expand Up @@ -90727,7 +90729,7 @@ document.body.appendChild(text);
title="event-DOMContentLoaded">DOMContentLoaded</code> at the
<code>Document</code>.</p></li>

<li><p><span>Spin the event loop</span> until the <span>list of
<li><p><span>Spin the event loop</span> until the <span>set of
scripts that will execute as soon as possible</span> is
empty.</p></li> <!-- this step is redundant with the next one,
really, since all those scripts also delay the load event. It's
Expand Down

0 comments on commit 219f2cf

Please sign in to comment.