Skip to content

Commit

Permalink
[e] (0) Split a long sentence into multiple paragraphs.
Browse files Browse the repository at this point in the history
Fixing https://www.w3.org/Bugs/Public/show_bug.cgi?id=16598
Affected topics: HTML

git-svn-id: http://svn.whatwg.org/webapps@7394 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Sep 24, 2012
1 parent 98cd5df commit 881669f
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 38 deletions.
35 changes: 22 additions & 13 deletions complete.html
Expand Up @@ -246,7 +246,7 @@

<header class=head id=head><p><a class=logo href=http://www.whatwg.org/><img alt=WHATWG height=101 src=/images/logo width=101></a></p>
<hgroup><h1 class=allcaps>HTML</h1>
<h2 class="no-num no-toc">Living Standard &mdash; Last Updated 23 September 2012</h2>
<h2 class="no-num no-toc">Living Standard &mdash; Last Updated 24 September 2012</h2>
</hgroup><dl><dt><strong>Web developer edition:</strong></dt>
<dd><strong><a href=http://developers.whatwg.org/>http://developers.whatwg.org/</a></strong></dd>
<dt>Multiple-page version:</dt>
Expand Down Expand Up @@ -76442,18 +76442,27 @@ <h3 id=timers><span class=secno>7.3 </span>Timers</h3>
<ol><li>

<p>If the first argument to the invoked method is a
<code>Function</code>, then return a <a href=#concept-task title=concept-task>task</a> that checks if the entry for <var title="">handle</var> in <var title="">list</var> has been
cleared, and if it has not, calls the <code>Function</code> with
as its arguments the third and subsequent arguments to the invoked
method (if any) and with an undefined <var title="">thisArg</var>,
and abort these steps. <a href=#refsECMA262>[ECMA262]</a></p>

<p class=note>Setting <var title="">thisArg</var> to undefined
means that the function code will be executed with the <code title="">this</code> keyword bound to the <code><a href=#windowproxy>WindowProxy</a></code>
or the <code><a href=#workerglobalscope>WorkerGlobalScope</a></code> object, as if the code was
running in the global scope.</p>

<p>Otherwise, continue with the remaining steps.</p>
<code>Function</code>, then return a <a href=#concept-task title=concept-task>task</a> that runs the following substeps,
and then abort these steps:

<ol><li><p>If the entry for <var title="">handle</var> in <var title="">list</var> has been cleared, then abort this <a href=#concept-task title=concept-task>task</a>'s substeps.</li>

<li>

<p>Call the <code>Function</code>. Use the third and subsequent
arguments to the invoked method (if any) as the arguments for
invoking the <code>Function</code>. Use the undefined value as
the <var title="">thisArg</var> for invoking the
<code>Function</code>. <a href=#refsECMA262>[ECMA262]</a></p>

<p class=note>Setting <var title="">thisArg</var> to undefined
means that the function code will be executed with the <code title="">this</code> keyword bound to the
<code><a href=#windowproxy>WindowProxy</a></code> or the <code><a href=#workerglobalscope>WorkerGlobalScope</a></code>
object, as if the code was running in the global scope.</p>

</li>

</ol><p>Otherwise, continue with the remaining steps.</p>

</li>

Expand Down
35 changes: 22 additions & 13 deletions index
Expand Up @@ -246,7 +246,7 @@

<header class=head id=head><p><a class=logo href=http://www.whatwg.org/><img alt=WHATWG height=101 src=/images/logo width=101></a></p>
<hgroup><h1 class=allcaps>HTML</h1>
<h2 class="no-num no-toc">Living Standard &mdash; Last Updated 23 September 2012</h2>
<h2 class="no-num no-toc">Living Standard &mdash; Last Updated 24 September 2012</h2>
</hgroup><dl><dt><strong>Web developer edition:</strong></dt>
<dd><strong><a href=http://developers.whatwg.org/>http://developers.whatwg.org/</a></strong></dd>
<dt>Multiple-page version:</dt>
Expand Down Expand Up @@ -76442,18 +76442,27 @@ setTimeout({ toString: function () {
<ol><li>

<p>If the first argument to the invoked method is a
<code>Function</code>, then return a <a href=#concept-task title=concept-task>task</a> that checks if the entry for <var title="">handle</var> in <var title="">list</var> has been
cleared, and if it has not, calls the <code>Function</code> with
as its arguments the third and subsequent arguments to the invoked
method (if any) and with an undefined <var title="">thisArg</var>,
and abort these steps. <a href=#refsECMA262>[ECMA262]</a></p>

<p class=note>Setting <var title="">thisArg</var> to undefined
means that the function code will be executed with the <code title="">this</code> keyword bound to the <code><a href=#windowproxy>WindowProxy</a></code>
or the <code><a href=#workerglobalscope>WorkerGlobalScope</a></code> object, as if the code was
running in the global scope.</p>

<p>Otherwise, continue with the remaining steps.</p>
<code>Function</code>, then return a <a href=#concept-task title=concept-task>task</a> that runs the following substeps,
and then abort these steps:

<ol><li><p>If the entry for <var title="">handle</var> in <var title="">list</var> has been cleared, then abort this <a href=#concept-task title=concept-task>task</a>'s substeps.</li>

<li>

<p>Call the <code>Function</code>. Use the third and subsequent
arguments to the invoked method (if any) as the arguments for
invoking the <code>Function</code>. Use the undefined value as
the <var title="">thisArg</var> for invoking the
<code>Function</code>. <a href=#refsECMA262>[ECMA262]</a></p>

<p class=note>Setting <var title="">thisArg</var> to undefined
means that the function code will be executed with the <code title="">this</code> keyword bound to the
<code><a href=#windowproxy>WindowProxy</a></code> or the <code><a href=#workerglobalscope>WorkerGlobalScope</a></code>
object, as if the code was running in the global scope.</p>

</li>

</ol><p>Otherwise, continue with the remaining steps.</p>

</li>

Expand Down
38 changes: 26 additions & 12 deletions source
Expand Up @@ -89373,18 +89373,32 @@ setTimeout({ toString: function () {

<p>If the first argument to the invoked method is a
<code>Function</code>, then return a <span
title="concept-task">task</span> that checks if the entry for <var
title="">handle</var> in <var title="">list</var> has been
cleared, and if it has not, calls the <code>Function</code> with
as its arguments the third and subsequent arguments to the invoked
method (if any) and with an undefined <var title="">thisArg</var>,
and abort these steps. <a href="#refsECMA262">[ECMA262]</a></p>

<p class="note">Setting <var title="">thisArg</var> to undefined
means that the function code will be executed with the <code
title="">this</code> keyword bound to the <code>WindowProxy</code>
or the <code>WorkerGlobalScope</code> object, as if the code was
running in the global scope.</p>
title="concept-task">task</span> that runs the following substeps,
and then abort these steps:

<ol>

<li><p>If the entry for <var title="">handle</var> in <var
title="">list</var> has been cleared, then abort this <span
title="concept-task">task</span>'s substeps.</p></li>

<li>

<p>Call the <code>Function</code>. Use the third and subsequent
arguments to the invoked method (if any) as the arguments for
invoking the <code>Function</code>. Use the undefined value as
the <var title="">thisArg</var> for invoking the
<code>Function</code>. <a href="#refsECMA262">[ECMA262]</a></p>

<p class="note">Setting <var title="">thisArg</var> to undefined
means that the function code will be executed with the <code
title="">this</code> keyword bound to the
<code>WindowProxy</code> or the <code>WorkerGlobalScope</code>
object, as if the code was running in the global scope.</p>

</li>

</ol>

<p>Otherwise, continue with the remaining steps.</p>

Expand Down

0 comments on commit 881669f

Please sign in to comment.