Skip to content

Commit

Permalink
[giow] (2) Make setInterval() clamp at 4ms as well.
Browse files Browse the repository at this point in the history
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=12285

git-svn-id: http://svn.whatwg.org/webapps@6362 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Aug 3, 2011
1 parent 3ffbe32 commit 04e2cfd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions complete.html
Expand Up @@ -69133,8 +69133,8 @@ <h3 id=timers><span class=secno>7.3 </span>Timers</h3>

<li><p><a href=#get-the-timeout>Get the timeout</a>, and let <var title="">timeout</var> be the result.</li>

<li><p>If <var title="">timeout</var> is less than 10, then
increase <var title="">timeout</var> to 10.</li> <!-- (but see
<li><p>If <var title="">timeout</var> is less than 4, then
increase <var title="">timeout</var> to 4.</li> <!-- (but see
note below about IE) -->

<li><p>Return <var title="">handle</var>, and then continue running
Expand Down
4 changes: 2 additions & 2 deletions index
Expand Up @@ -69025,8 +69025,8 @@ interface <dfn id=windowtimers>WindowTimers</dfn> {

<li><p><a href=#get-the-timeout>Get the timeout</a>, and let <var title="">timeout</var> be the result.</li>

<li><p>If <var title="">timeout</var> is less than 10, then
increase <var title="">timeout</var> to 10.</li> <!-- (but see
<li><p>If <var title="">timeout</var> is less than 4, then
increase <var title="">timeout</var> to 4.</li> <!-- (but see
note below about IE) -->

<li><p>Return <var title="">handle</var>, and then continue running
Expand Down
4 changes: 2 additions & 2 deletions source
Expand Up @@ -78698,8 +78698,8 @@ interface <dfn>WindowTimers</dfn> {
<li><p><span>Get the timeout</span>, and let <var
title="">timeout</var> be the result.</p></li>

<li><p>If <var title="">timeout</var> is less than 10, then
increase <var title="">timeout</var> to 10.</p></li> <!-- (but see
<li><p>If <var title="">timeout</var> is less than 4, then
increase <var title="">timeout</var> to 4.</p></li> <!-- (but see
note below about IE) -->

<li><p>Return <var title="">handle</var>, and then continue running
Expand Down

0 comments on commit 04e2cfd

Please sign in to comment.