- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Sat, 28 Aug 2010 01:56:19 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv18106 Modified Files: Overview.html Log Message: clarify that you do nothing if clearTimeout() is given bogus args. (whatwg r5386) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.4299 retrieving revision 1.4300 diff -u -d -r1.4299 -r1.4300 --- Overview.html 28 Aug 2010 01:53:31 -0000 1.4299 +++ Overview.html 28 Aug 2010 01:56:15 -0000 1.4300 @@ -47771,7 +47771,10 @@ 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: @@ -47825,7 +47828,10 @@ 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
Received on Saturday, 28 August 2010 01:56:23 UTC