- From: poot <cvsmail@w3.org>
- Date: Fri, 18 Jul 2008 08:47:39 +0900 (JST)
- To: public-html-diffs@w3.org
xref fixes (whatwg r1886) (changed by: Ian Hickson)
Diffs for this change per section:
clearTimeout()
http://people.w3.org/mike/diffs/html5/spec/Overview.1.1075.html#cleartimeout
clearInterval()
http://people.w3.org/mike/diffs/html5/spec/Overview.1.1075.html#clearinterval
Current content per affected section:
http://dev.w3.org/html5/spec/Overview.html#cleartimeout
http://dev.w3.org/html5/spec/Overview.html#clearinterval
Previously published WD content per affected section:
http://www.w3.org/TR/2008/WD-html5-20080610/single-page/#cleartimeout
http://www.w3.org/TR/2008/WD-html5-20080610/single-page/#clearinterval
Cumulative diff: http://people.w3.org/mike/diffs/html5/spec/Overview.diff.html
http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.1074&r2=1.1075&f=h
http://html5.org/tools/web-apps-tracker?from=1885&to=1886
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.1074
retrieving revision 1.1075
diff -u -d -r1.1074 -r1.1075
--- Overview.html 17 Jul 2008 07:13:56 -0000 1.1074
+++ Overview.html 17 Jul 2008 23:44:27 -0000 1.1075
@@ -53481,10 +53481,14 @@
title=dom-windowtimers-clearTimeout><code>clearTimeout()</code></dfn> and
<dfn id=clearinterval
title=dom-windowtimers-clearInterval><code>clearInterval()</code></dfn>
- methods take one integer (the value returned by <code>setTimeout</code>
- and <code>setInterval</code> respectively) and must cancel the specified
- timeout. When called with a value that does not correspond to an active
- timeout or interval, the methods must return without doing anything.
+ methods take one integer (the value returned by <code
+ title=dom-windowtimers-setTimeout><a
+ href="#settimeout">setTimeout()</a></code> and <code
+ title=dom-windowtimers-setInterval><a
+ href="#setinterval...">setInterval()</a></code> respectively) and must
+ cancel the specified timeout. When called with a value that does not
+ correspond to an active timeout or interval, the methods must return
+ without doing anything.
<p>Timeouts must never fire while another script is executing. (Thus the
HTML scripting model is strictly single-threaded and not reentrant.)</p>
Received on Thursday, 17 July 2008 23:48:16 UTC