- From: poot <cvsmail@w3.org>
- Date: Mon, 4 May 2009 15:12:12 +0900 (JST)
- To: public-html-diffs@w3.org
Bring setTimeout() and setInterval() up to date with recent changes and
bring them back into the fold. (whatwg r3068)
Diffs for this change per section:
http://people.w3.org/mike/diffs/html5/spec/Overview.1.2227.html#mediamodeabstractview
http://people.w3.org/mike/diffs/html5/spec/Overview.1.2227.html#status-of-this-document
http://people.w3.org/mike/diffs/html5/spec/Overview.1.2227.html#dom-windowtimers-cleartimeout
http://people.w3.org/mike/diffs/html5/spec/Overview.1.2227.html#a-vocabulary-and-associated-apis-for-html-and-xhtml
http://people.w3.org/mike/diffs/html5/spec/Overview.1.2227.html#editor-s-draft-date-1-january-1970
http://people.w3.org/mike/diffs/html5/spec/Overview.1.2227.html#dom-windowtimers-clearinterval
http://people.w3.org/mike/diffs/html5/spec/Overview.1.2227.html#rendering-and-the-dom
http://people.w3.org/mike/diffs/html5/spec/Overview.diff.html
http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.2226&r2=1.2227&f=h
http://html5.org/tools/web-apps-tracker?from=3067&to=3068
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.2226
retrieving revision 1.2227
diff -u -d -r1.2226 -r1.2227
--- Overview.html 3 May 2009 08:00:03 -0000 1.2226
+++ Overview.html 4 May 2009 06:10:36 -0000 1.2227
@@ -148,7 +148,7 @@
<h2 class="no-num no-toc" id="a-vocabulary-and-associated-apis-for-html-and-xhtml">A vocabulary and associated APIs for HTML and XHTML</h2>
<!--ZZZ:-->
<!--<h2 class="no-num no-toc">W3C Working Draft 23 April 2009</h2>-->
- <h2 class="no-num no-toc" id="editor-s-draft-date-1-january-1970">Editor's Draft 3 May 2009</h2>
+ <h2 class="no-num no-toc" id="editor-s-draft-date-1-january-1970">Editor's Draft 4 May 2009</h2>
<!--:ZZZ-->
<dl><!-- ZZZ: update the month/day (twice), (un)comment out
<dt>This Version:</dt>
@@ -241,7 +241,7 @@
track.
<!--ZZZ:-->
[...1052 lines suppressed...]
- variants must work in the same way as the <code>setTimeout</code>
- variants except that if <var title="">timeout</var> is a value
- greater than zero, the <a href="#concept-task" title="concept-task">task</a> that
- invokes the <var title="">handler</var> or <code><a href="#the-code-element">code</a></code> must be
- <a href="#queue-a-task" title="queue a task">queued</a> again every <var title="">timeout</var> milliseconds, not just the once.</p><!-- so
- setInterval(x) and setInterval(x, 0) are equivalent to setTimeout(x)
- and setTimeout(x, 0) respectively --><p>The <dfn id="dom-windowtimers-cleartimeout" title="dom-windowtimers-clearTimeout"><code>clearTimeout()</code></dfn>
- and <dfn id="dom-windowtimers-clearinterval" title="dom-windowtimers-clearInterval"><code>clearInterval()</code></dfn>
- methods take one integer (the value returned by <code title="dom-windowtimers-setTimeout"><a href="#dom-windowtimers-settimeout">setTimeout()</a></code> and <code title="dom-windowtimers-setInterval"><a href="#dom-windowtimers-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>For both <code title="dom-windowtimers-setTimeout"><a href="#dom-windowtimers-settimeout">setTimeout()</a></code> and <code title="dom-windowtimers-setInterval"><a href="#dom-windowtimers-setinterval">setInterval()</a></code>, the clock
- upon which the timers are based must only tick while the
- <code>Document</code> of the <a href="#script-s-global-object" title="script's global
- object">global object</a> of their callbacks is <a href="#fully-active">fully
- active</a>.<h3 id="rendering-and-the-dom"><span class="secno">12.4 </span>Rendering and the DOM</h3><p class="XXX">This section is expected to be moved to its own
+ or technologies based on X3D that are namespace-aware.</p><!-- <p>XXX example here</p> --><h3 id="rendering-and-the-dom"><span class="secno">12.3 </span>Rendering and the DOM</h3><p class="XXX">This section is expected to be moved to its own
specification in due course. It needs a lot of work to actually make
it into a semi-decent spec.<p>Any object implement the <code>AbstractView</code> interface must
also implement the <code><a href="#mediamodeabstractview">MediaModeAbstractView</a></code> interface.<pre class="idl">[NoInterfaceObject, ImplementedOn=<span>AbstractView</span>] interface <dfn id="mediamodeabstractview">MediaModeAbstractView</dfn> {
Received on Monday, 4 May 2009 06:12:49 UTC