- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Sun, 09 Aug 2009 23:26:29 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv30474
Modified Files:
Overview.html
Log Message:
Include domintro text for clearTimeout() and clearInterval(). (bug 7175) (whatwg r3579)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.2771
retrieving revision 1.2772
diff -u -d -r1.2771 -r1.2772
--- Overview.html 9 Aug 2009 23:17:34 -0000 1.2771
+++ Overview.html 9 Aug 2009 23:26:26 -0000 1.2772
@@ -51788,6 +51788,14 @@
</dd>
+ <dt><var title="">window</var> . <code title="dom-windowtimers-clearTimeout"><a href="#dom-windowtimers-cleartimeout">clearTimeout</a></code>( <var title="">handle</var> )</dt>
+
+ <dd>
+
+ <p>Cancels the timeout set with <code title="dom-windowtimers-setTimeout"><a href="#dom-windowtimers-settimeout">setTimeout()</a></code> identified by <var title="">handle</var>.</p>
+
+ </dd>
+
<dt><var title="">handle</var> = <var title="">window</var> . <code title="dom-windowtimers-setInterval"><a href="#dom-windowtimers-setinterval">setInterval</a></code>( <var title="">handler</var> [, <var title="">timeout</var> [, <var title="">arguments</var> ] ] )</dt>
<dd>
@@ -51806,6 +51814,14 @@
</dd>
+ <dt><var title="">window</var> . <code title="dom-windowtimers-clearInterval"><a href="#dom-windowtimers-clearinterval">clearInterval</a></code>( <var title="">handle</var> )</dt>
+
+ <dd>
+
+ <p>Cancels the timeout set with <code title="dom-windowtimers-setInterval"><a href="#dom-windowtimers-setinterval">setInterval()</a></code> identified by <var title="">handle</var>.</p>
+
+ </dd>
+
</dl>
<p class="note">This API does not guarantee that timers will fire
Received on Sunday, 9 August 2009 23:26:41 UTC