hixie: clarify that you do nothing if clearTimeout() is given bogus args. (whatwg r5386)

hixie: clarify that you do nothing if clearTimeout() is given bogus
args. (whatwg r5386)

http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.4299&r2=1.4300&f=h
http://html5.org/tools/web-apps-tracker?from=5385&to=5386

===================================================================
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:57:12 UTC