- From: Tab Atkins Jr.. via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 12 Dec 2011 22:40:22 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-values
In directory hutz:/tmp/cvs-serv29576
Modified Files:
Overview.html Overview.src.html
Log Message:
Arbitrarily define ints/numbers to a required minimum range of 2^30
Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-values/Overview.html,v
retrieving revision 1.140
retrieving revision 1.141
diff -u -d -r1.140 -r1.141
--- Overview.html 12 Dec 2011 22:22:40 -0000 1.140
+++ Overview.html 12 Dec 2011 22:40:20 -0000 1.141
@@ -196,10 +196,7 @@
<li><a href="#integers"><span class=secno>4.1. </span> Integers: the
‘<code class=css><integer></code>’ type</a>
- <li><a href="#numbers"><span class=secno>4.2. </span> Numbers: the
- ‘<code class=css><number></code>’ type</a>
-
- <li><a href="#percentages"><span class=secno>4.3. </span> Percentages:
+ <li><a href="#percentages"><span class=secno>4.2. </span> Percentages:
the ‘<code class=css><percentage></code>’ type</a>
</ul>
@@ -706,10 +703,11 @@
<p>Properties may restrict the integer value to some range. If the value is
outside the allowed range, the declaration is invalid and must be <a
- href="http://www.w3.org/TR/CSS21/conform.html#ignore">ignored</a>.
+ href="http://www.w3.org/TR/CSS21/conform.html#ignore">ignored</a>. For
+ unrestricted values, UAs must support at least up to ±2<sup>30.</sup>
- <h3 id=numbers><span class=secno>4.2. </span> Numbers: the ‘<a
- href="#number-value"><code class=css><number></code></a>’ type</h3>
+ <p><sup id=numbers> Numbers: the ‘<a href="#number-value"><code
+ class=css><number></code></a>’ type </sup>
<p>Number values are denoted by <dfn
id=number-value><code><number></code></dfn>. A <dfn
@@ -724,9 +722,10 @@
<p>Properties may restrict the number value to some range. If the value is
outside the allowed range, the declaration is invalid and must be <a
- href="http://www.w3.org/TR/CSS21/conform.html#ignore">ignored</a>.
+ href="http://www.w3.org/TR/CSS21/conform.html#ignore">ignored</a>. For
+ unrestricted values, UAs must support at least up to ±2<sup>30.</sup>
- <h3 id=percentages><span class=secno>4.3. </span> Percentages: the
+ <h3 id=percentages><span class=secno>4.2. </span> Percentages: the
‘<a href="#percentage-value"><code
class=css><percentage></code></a>’ type</h3>
@@ -749,7 +748,8 @@
<p>Properties may restrict the percentage value to some range. If the value
is outside the allowed range, the declaration is invalid and must be <a
- href="http://www.w3.org/TR/CSS21/conform.html#ignore">ignored</a>.
+ href="http://www.w3.org/TR/CSS21/conform.html#ignore">ignored</a>. For
+ unrestricted values, UAs must support at least up to ±2<sup>30%.</sup>
<h2 id=lengths><span class=secno>5. </span> Distance Units: the ‘<a
href="#length-value"><code class=css><length></code></a>’ type</h2>
@@ -1819,17 +1819,17 @@
<li>ms, <a href="#ms" title=ms><strong>6.2.</strong></a>
- <li>number, <a href="#number" title=number><strong>4.2.</strong></a>
+ <li>number, <a href="#number" title=number><strong>4.1.</strong></a>
<li><a href="#number-value"><code><number></code></a>, <a
- href="#number-value" title="<number>"><strong>4.2.</strong></a>
+ href="#number-value" title="<number>"><strong>4.1.</strong></a>
<li>percentage, <a href="#percentage"
- title=percentage><strong>4.3.</strong></a>
+ title=percentage><strong>4.2.</strong></a>
<li><a href="#percentage-value"><code><percentage></code></a>, <a
href="#percentage-value"
- title="<percentage>"><strong>4.3.</strong></a>
+ title="<percentage>"><strong>4.2.</strong></a>
<li>rad, <a href="#rad" title=rad><strong>6.1.</strong></a>
Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-values/Overview.src.html,v
retrieving revision 1.143
retrieving revision 1.144
diff -u -d -r1.143 -r1.144
--- Overview.src.html 12 Dec 2011 22:22:40 -0000 1.143
+++ Overview.src.html 12 Dec 2011 22:40:20 -0000 1.144
@@ -418,8 +418,9 @@
<p>Properties may restrict the integer value to some range.
If the value is outside the allowed range, the declaration is invalid
and must be <a href="http://www.w3.org/TR/CSS21/conform.html#ignore">ignored</a>.
+ For unrestricted values, UAs must support at least up to ±2<sup>30</h3>.</p>
-<h3 id="numbers">
+<sup id="numbers">
Numbers: the ''<number>'' type</h3>
<p>Number values are denoted by
@@ -434,6 +435,7 @@
<p>Properties may restrict the number value to some range.
If the value is outside the allowed range, the declaration is invalid
and must be <a href="http://www.w3.org/TR/CSS21/conform.html#ignore">ignored</a>.
+ For unrestricted values, UAs must support at least up to ±2<sup>30</h3>.</p>
<h3 id="percentages">
Percentages: the ''<percentage>'' type</h3>
@@ -457,6 +459,7 @@
<p>Properties may restrict the percentage value to some range.
If the value is outside the allowed range, the declaration is invalid
and must be <a href="http://www.w3.org/TR/CSS21/conform.html#ignore">ignored</a>.
+ For unrestricted values, UAs must support at least up to ±2<sup>30</h3>%.</p>
<h2 id="lengths">
Distance Units: the ''<length>'' type</h2>
Received on Monday, 12 December 2011 22:42:29 UTC