- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 28 Sep 2010 22:16:37 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv1282
Modified Files:
number-state.html spec.html timers.html tokenization.html
Log Message:
Allow timers to be delayed when power usage is an issue. (whatwg r5535)
[updated by splitter]
Index: timers.html
===================================================================
RCS file: /sources/public/html5/spec/timers.html,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- timers.html 25 Sep 2010 18:17:06 -0000 1.15
+++ timers.html 28 Sep 2010 22:16:35 -0000 1.16
@@ -449,6 +449,21 @@
this one whose <var title="">timeout</var> is equal to or less than
this one's have completed.</p></li>
+ <li>
+
+ <p>Optionally, wait a further user-agent defined length of
+ time.</p>
+
+ <p class="note">This is intended to allow user agents to pad
+ timeouts as needed to optimise the power usage of the device. For
+ example, some processors have a low-power mode where the
+ granularity of timers is reduced; on such platforms, user agents
+ can slow timers down to fit this schedule instead of requiring the
+ processor to use the more accurate mode with its associated higher
+ power usage.</p>
+
+ </li>
+
<li><p><a href="webappapis.html#queue-a-task" title="queue a task">Queue</a> the <var title="">task</var> <a href="webappapis.html#concept-task" title="concept-task">task</a>.</p></li>
</ol><p>The <dfn id="dom-windowtimers-cleartimeout" title="dom-windowtimers-clearTimeout"><code>clearTimeout()</code></dfn>
@@ -504,6 +519,21 @@
</li>
+ <li>
+
+ <p>Optionally, wait a further user-agent defined length of
+ time.</p>
+
+ <p class="note">This is intended to allow user agents to pad
+ timeouts as needed to optimise the power usage of the device. For
+ example, some processors have a low-power mode where the
+ granularity of timers is reduced; on such platforms, user agents
+ can slow timers down to fit this schedule instead of requiring the
+ processor to use the more accurate mode with its associated higher
+ power usage.</p>
+
+ </li>
+
<li><p><a href="webappapis.html#queue-a-task" title="queue a task">Queue</a> the <var title="">task</var> <a href="webappapis.html#concept-task" title="concept-task">task</a>.</p></li>
<li><p>Return to the step labeled <i>wait</i>.</p></li>
Index: tokenization.html
===================================================================
RCS file: /sources/public/html5/spec/tokenization.html,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -d -r1.39 -r1.40
--- tokenization.html 27 Sep 2010 23:46:37 -0000 1.39
+++ tokenization.html 28 Sep 2010 22:16:35 -0000 1.40
@@ -3391,11 +3391,12 @@
<a href="parsing.html#stack-of-open-elements">stack of open elements</a> has only one node on it,
then ignore the token. (<a href="the-end.html#fragment-case">fragment case</a>)</p>
- <p>Otherwise, for each attribute on the token, check to see if
- the attribute is already present on the <code><a href="sections.html#the-body-element-0">body</a></code>
- element (the second element) on the <a href="parsing.html#stack-of-open-elements">stack of open
- elements</a>. If it is not, add the attribute and its
- corresponding value to that element.</p>
+ <p>Otherwise, set the <a href="parsing.html#frameset-ok-flag">frameset-ok flag</a> to "not ok";
+ then, for each attribute on the token, check to see if the
+ attribute is already present on the <code><a href="sections.html#the-body-element-0">body</a></code> element (the
+ second element) on the <a href="parsing.html#stack-of-open-elements">stack of open elements</a>, and if
+ it is not, add the attribute and its corresponding value to that
+ element.</p>
</dd>
Index: spec.html
===================================================================
RCS file: /sources/public/html5/spec/spec.html,v
retrieving revision 1.1244
retrieving revision 1.1245
diff -u -d -r1.1244 -r1.1245
--- spec.html 28 Sep 2010 21:46:35 -0000 1.1244
+++ spec.html 28 Sep 2010 22:16:34 -0000 1.1245
@@ -338,7 +338,7 @@
<a href="Overview.html">single page HTML</a>,
<a href="spec.html">multipage HTML</a>,
<a href="author/">web developer edition</a>.
-This is revision 1.4420.
+This is revision 1.4423.
</p>
<p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
© 2010 <a href="http://www.w3.org/"><abbr title="World Wide
Index: number-state.html
===================================================================
RCS file: /sources/public/html5/spec/number-state.html,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- number-state.html 24 Sep 2010 22:16:46 -0000 1.15
+++ number-state.html 28 Sep 2010 22:16:34 -0000 1.16
@@ -845,7 +845,7 @@
<i><a href="#radio-button-group">radio button group</a></i> contains only that element.</p><div class="impl">
<p>When any of the following phenomena occur, if the element's <a href="association-of-controls-and-forms.html#concept-fe-checked" title="concept-fe-checked">checkedness</a> state is true after
- the occurance, the <a href="association-of-controls-and-forms.html#concept-fe-checked" title="concept-fe-checked">checkedness</a> state of all the other
+ the occurrence, the <a href="association-of-controls-and-forms.html#concept-fe-checked" title="concept-fe-checked">checkedness</a> state of all the other
elements in the same <i><a href="#radio-button-group">radio button group</a></i> must be set to
false:</p>
Received on Tuesday, 28 September 2010 22:16:41 UTC