- From: poot <cvsmail@w3.org>
- Date: Thu, 31 Jul 2008 14:26:43 +0900 (JST)
- To: public-html-diffs@w3.org
Allow implementations to use other IEEE rounding modes if really necessary. (whatwg r1967) header http://people.w3.org/mike/diffs/html5/spec/Overview.1.1158.html#header XXX6(index, value) http://people.w3.org/mike/diffs/html5/spec/Overview.1.1158.html#xxx6index http://people.w3.org/mike/diffs/html5/spec/Overview.diff.html http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.1157&r2=1.1158&f=h http://html5.org/tools/web-apps-tracker?from=1966&to=1967 =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.1157 retrieving revision 1.1158 diff -u -d -r1.1157 -r1.1158 --- Overview.html 30 Jul 2008 22:27:38 -0000 1.1157 +++ Overview.html 31 Jul 2008 05:23:10 -0000 1.1158 @@ -27,7 +27,7 @@ for HTML and XHTML</h2> <h2 class="no-num no-toc" id=editors0><!-- "W3C Working Draft" --> - Editor's Draft <!--ZZZ-->30 July 2008</h2> + Editor's Draft <!--ZZZ-->31 July 2008</h2> <dl><!-- ZZZ: update the month/day <dt>This Version:</dt> @@ -175,7 +175,7 @@ <p>The W3C <a href="http://www.w3.org/html/wg/">HTML Working Group</a> is the W3C working group responsible for this specification's progress along - the W3C Recommendation track. <!--ZZZ:--> This specification is the 30 + the W3C Recommendation track. <!--ZZZ:--> This specification is the 31 July 2008 <!--ZZZ "Working Draft"-->Editor's Draft. <!--:ZZZ--></p> <!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --> <!-- relationship to other work (required) --> @@ -10899,13 +10899,15 @@ just the section's headings and subheadings — for example it would be reasonable for the header to include version history information. - <p>For the purposes of document summaries, outlines, and the like, <code><a - href="#header">header</a></code> elements are equivalent to the highest <a - href="#rank" title=rank>ranked</a> <code><a + <p>For the purposes of document summaries, outlines, and the like, the text + of <code><a href="#header">header</a></code> elements is defined to be the + text of the highest <a href="#rank" title=rank>ranked</a> <code><a href="#h1">h1</a></code>–<code><a href="#h6">h6</a></code> element - descendant of the <code><a href="#header">header</a></code> element (the - first such element if there are multiple elements with that <a - href="#rank">rank</a>). + descendant of the <code><a href="#header">header</a></code> element, if + there are any such elements, and the first such element if there are + multiple elements with that <a href="#rank">rank</a>. If there are no such + elements, then the text of the <code><a href="#header">header</a></code> + element is the empty string. <p>Other heading elements in the <code><a href="#header">header</a></code> element indicate subheadings or subtitles. @@ -22486,7 +22488,7 @@ JavaScript's ToNumber algorithm, and if the result is a NaN value, then the value be must converted to zero. If the result is less than 0, it must be clamped to zero. If the result is more than 255, it must be clamped to - 255. If the number is not an integer, it must be rounded to the nearest + 255. If the number is not an integer, it should be rounded to the nearest integer using the IEEE 754r <i>convertToIntegerTiesToEven</i> rounding mode. <a href="#references">[ECMA262]</a> <a href="#references">[IEEE754R]</a>
Received on Thursday, 31 July 2008 05:27:21 UTC