- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 24 Sep 2010 00:47:23 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv8097 Modified Files: common-dom-interfaces.html iana.html spec.html Log Message: Match reality for reflection of unsigned long IDL attrs. (whatwg r5472) [updated by splitter] Index: common-dom-interfaces.html =================================================================== RCS file: /sources/public/html5/spec/common-dom-interfaces.html,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- common-dom-interfaces.html 8 Sep 2010 09:25:42 -0000 1.13 +++ common-dom-interfaces.html 24 Sep 2010 00:47:14 -0000 1.14 @@ -421,14 +421,18 @@ type (<code>unsigned long</code>) then, on getting, the content attribute must be parsed according to the <a href="common-microsyntaxes.html#rules-for-parsing-non-negative-integers">rules for parsing non-negative integers</a>, and if that is successful, and the - value is in the range of the IDL attribute's type, the resulting - value must be returned. If, on the other hand, it fails or returns - an out of range value, or if the attribute is absent, the default - value must be returned instead, or 0 if there is no default - value. On setting, the given value must be converted to the shortest - possible string representing the number as a <a href="common-microsyntaxes.html#valid-non-negative-integer">valid - non-negative integer</a> and then that string must be used as the - new content attribute value.</p> + value is in the range 0 to 2147483647 inclusive, the resulting value + must be returned. If, on the other hand, it fails or returns an out + of range value, or if the attribute is absent, the default value + must be returned instead, or 0 if there is no default value. On + setting, the given value must be converted to the shortest possible + string representing the number as a <a href="common-microsyntaxes.html#valid-non-negative-integer">valid non-negative + integer</a> and then that string must be used as the new content + attribute value.</p> + <!-- see http://www.w3.org/Bugs/Public/show_bug.cgi?id=10352 and + https://bugzilla.mozilla.org/show_bug.cgi?id=586118 for why the + range is clamped to 2147483647 rather the normal unsigned long + maximum value of 4294967295 --> <p>If a reflecting IDL attribute is an unsigned integer type (<code>unsigned long</code>) that is <dfn id="limited-to-only-non-negative-numbers-greater-than-zero">limited to only Index: iana.html =================================================================== RCS file: /sources/public/html5/spec/iana.html,v retrieving revision 1.332 retrieving revision 1.333 diff -u -d -r1.332 -r1.333 --- iana.html 23 Sep 2010 17:46:44 -0000 1.332 +++ iana.html 24 Sep 2010 00:47:17 -0000 1.333 @@ -440,7 +440,7 @@ <dt>Change controller:</dt> <dd>W3C</dd> </dl><p>Fragment identifiers used with <code><a href="#text-html">text/html</a></code> resources - refer to <a href="history.html#the-indicated-part-of-the-document">the indicated part of the document</a>.</p><h3 id="text-html-sandboxed"><span class="secno">12.2 </span><dfn><code>text/html-sandboxed</code></dfn></h3><p class="XXX annotation"><span><a href="http://www.w3.org/html/wg/tracker/issues/110">ISSUE-110</a> (sandbox-type-owner) blocks progress to Last Call</span></p><p>This registration is for community review and will be submitted + refer to <a href="history.html#the-indicated-part-of-the-document">the indicated part of the document</a>.</p><h3 id="text-html-sandboxed"><span class="secno">12.2 </span><dfn><code>text/html-sandboxed</code></dfn></h3><p>This registration is for community review and will be submitted to the IESG for review, approval, and registration with IANA.</p><!-- To: ietf-types@iana.org Subject: Registration of media type text/html-sandboxed Index: spec.html =================================================================== RCS file: /sources/public/html5/spec/spec.html,v retrieving revision 1.1208 retrieving revision 1.1209 diff -u -d -r1.1208 -r1.1209 --- spec.html 23 Sep 2010 22:46:43 -0000 1.1208 +++ spec.html 24 Sep 2010 00:47:21 -0000 1.1209 @@ -336,7 +336,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.4363. +This is revision 1.4364. </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
Received on Friday, 24 September 2010 00:47:25 UTC