Skip to content

Commit

Permalink
[e] (0) clarify that you do nothing if clearTimeout() is given bogus …
Browse files Browse the repository at this point in the history
…args.

Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=10006

git-svn-id: http://svn.whatwg.org/webapps@5386 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Aug 28, 2010
1 parent 0f1ee4b commit 5fe18cc
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 6 deletions.
10 changes: 8 additions & 2 deletions complete.html
Expand Up @@ -65063,7 +65063,10 @@ <h3 id=timers><span class=secno>7.2 </span>Timers</h3>
from the <a href=#list-of-active-timeouts>list of active timeouts</a> of the
<code><a href=#windowtimers>WindowTimers</a></code> object on which the method was invoked,
where <var title="">handle</var> is the argument passed to the
method.</p>
method, if any. (If <var title="">handle</var> does not identify an
entry in the <a href=#list-of-active-timeouts>list of active timeouts</a> of the
<code><a href=#windowtimers>WindowTimers</a></code> object on which the method was invoked,
the method does nothing.)</p>

<hr><p>The <dfn id=dom-windowtimers-setinterval title=dom-windowtimers-setInterval><code>setInterval()</code></dfn>
method must run the following steps:
Expand Down Expand Up @@ -65117,7 +65120,10 @@ <h3 id=timers><span class=secno>7.2 </span>Timers</h3>
from the <a href=#list-of-active-intervals>list of active intervals</a> of the
<code><a href=#windowtimers>WindowTimers</a></code> object on which the method was invoked,
where <var title="">handle</var> is the argument passed to the
method.</p>
method, if any. (If <var title="">handle</var> does not identify an
entry in the <a href=#list-of-active-intervals>list of active intervals</a> of the
<code><a href=#windowtimers>WindowTimers</a></code> object on which the method was invoked,
the method does nothing.)</p>

<hr><p>The <dfn id=method-context>method context</dfn>, when referenced by the algorithms
in this section, is the object on which the method for which the
Expand Down
10 changes: 8 additions & 2 deletions index
Expand Up @@ -65008,7 +65008,10 @@ interface <dfn id=windowtimers>WindowTimers</dfn> {
from the <a href=#list-of-active-timeouts>list of active timeouts</a> of the
<code><a href=#windowtimers>WindowTimers</a></code> object on which the method was invoked,
where <var title="">handle</var> is the argument passed to the
method.</p>
method, if any. (If <var title="">handle</var> does not identify an
entry in the <a href=#list-of-active-timeouts>list of active timeouts</a> of the
<code><a href=#windowtimers>WindowTimers</a></code> object on which the method was invoked,
the method does nothing.)</p>

<hr><p>The <dfn id=dom-windowtimers-setinterval title=dom-windowtimers-setInterval><code>setInterval()</code></dfn>
method must run the following steps:
Expand Down Expand Up @@ -65062,7 +65065,10 @@ interface <dfn id=windowtimers>WindowTimers</dfn> {
from the <a href=#list-of-active-intervals>list of active intervals</a> of the
<code><a href=#windowtimers>WindowTimers</a></code> object on which the method was invoked,
where <var title="">handle</var> is the argument passed to the
method.</p>
method, if any. (If <var title="">handle</var> does not identify an
entry in the <a href=#list-of-active-intervals>list of active intervals</a> of the
<code><a href=#windowtimers>WindowTimers</a></code> object on which the method was invoked,
the method does nothing.)</p>

<hr><p>The <dfn id=method-context>method context</dfn>, when referenced by the algorithms
in this section, is the object on which the method for which the
Expand Down
10 changes: 8 additions & 2 deletions source
Expand Up @@ -73667,7 +73667,10 @@ interface <dfn>WindowTimers</dfn> {
from the <span>list of active timeouts</span> of the
<code>WindowTimers</code> object on which the method was invoked,
where <var title="">handle</var> is the argument passed to the
method.</p>
method, if any. (If <var title="">handle</var> does not identify an
entry in the <span>list of active timeouts</span> of the
<code>WindowTimers</code> object on which the method was invoked,
the method does nothing.)</p>

<hr>

Expand Down Expand Up @@ -73734,7 +73737,10 @@ interface <dfn>WindowTimers</dfn> {
from the <span>list of active intervals</span> of the
<code>WindowTimers</code> object on which the method was invoked,
where <var title="">handle</var> is the argument passed to the
method.</p>
method, if any. (If <var title="">handle</var> does not identify an
entry in the <span>list of active intervals</span> of the
<code>WindowTimers</code> object on which the method was invoked,
the method does nothing.)</p>

<hr>

Expand Down

0 comments on commit 5fe18cc

Please sign in to comment.