- From: Elika Etemad via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 31 Oct 2011 17:01:11 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-values
In directory hutz:/tmp/cvs-serv11525
Modified Files:
Overview.html Overview.src.html
Log Message:
Remove <fraction> and <grid> types per WG resolution 2011-10-31 (TPAC)
Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-values/Overview.html,v
retrieving revision 1.128
retrieving revision 1.129
diff -u -d -r1.128 -r1.129
--- Overview.html 25 Oct 2011 22:28:09 -0000 1.128
+++ Overview.html 31 Oct 2011 17:01:09 -0000 1.129
@@ -26,14 +26,14 @@
<h1>CSS Values and Units Module Level 3</h1>
- <h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 25 October
+ <h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 31 October
2011</h2>
<dl>
<dt>This version:
<dd><a
- href="http://www.w3.org/TR/2011/ED-css3-values-20111025/">http://www.w3.org/TR/2011/ED-css3-values-20111025/</a>
+ href="http://www.w3.org/TR/2011/ED-css3-values-20111031/">http://www.w3.org/TR/2011/ED-css3-values-20111031/</a>
<dt>Latest version:
@@ -137,11 +137,10 @@
<p>The following features are at-risk and may be dropped during the CR
period: ‘<a href="#vh-unit"><code class=css>vh</code></a>’,
‘<a href="#vw-unit"><code class=css>vw</code></a>’, ‘<a
- href="#vm-unit"><code class=css>vm</code></a>’, ‘<a
- href="#fr-unit"><code class=css>fr</code></a>’, ‘<a
- href="#gr-unit"><code class=css>gr</code></a>’, ‘<a
- href="#cycle-value"><code class=css>cycle()</code></a>’, ‘<a
- href="#attr-value"><code class=css>attr()</code></a>’.
+ href="#vm-unit"><code class=css>vm</code></a>’, ‘<code
+ class=css>fr</code>’, ‘<code class=css>gr</code>’,
+ ‘<a href="#cycle-value"><code class=css>cycle()</code></a>’,
+ ‘<a href="#attr-value"><code class=css>attr()</code></a>’.
<h2 class="no-num no-toc" id=contents>Table of contents</h2>
<!--begin-toc-->
@@ -263,49 +262,37 @@
‘<code class=css><image></code>’ type</a>
</ul>
- <li><a href="#layout-values"><span class=secno>8. </span> Layout-specific
- Data Types</a>
- <ul class=toc>
- <li><a href="#proportions"><span class=secno>8.1. </span> Proportions:
- the ‘<code class=css><fraction></code>’ type and
- ‘<code class=css>fr</code>’ unit</a>
-
- <li><a href="#grids"><span class=secno>8.2. </span> Grid Units: the
- ‘<code class=css><grid></code>’ type and ‘<code
- class=css>gr</code>’ unit</a>
- </ul>
-
- <li><a href="#functional-notation"><span class=secno>9. </span> Functional
+ <li><a href="#functional-notation"><span class=secno>8. </span> Functional
Notations</a>
<ul class=toc>
- <li><a href="#calc"><span class=secno>9.1. </span> Mathematical
+ <li><a href="#calc"><span class=secno>8.1. </span> Mathematical
Expressions: ‘<code class=css>calc()</code>’, ‘<code
class=css>min()</code>’ and ‘<code
class=css>max()</code>’</a>
- <li><a href="#cycle"><span class=secno>9.2. </span> Cycling Values:
+ <li><a href="#cycle"><span class=secno>8.2. </span> Cycling Values:
‘<code class=css>cycle()</code>’</a>
- <li><a href="#attr"><span class=secno>9.3. </span> Attribute References:
+ <li><a href="#attr"><span class=secno>8.3. </span> Attribute References:
‘<code class=css>attr()</code>’</a>
</ul>
- <li><a href="#value-stages"><span class=secno>10. </span> Stages of Value
+ <li><a href="#value-stages"><span class=secno>9. </span> Stages of Value
Computation</a>
<ul class=toc>
- <li><a href="#specified"><span class=secno>10.1. </span> Finding the
+ <li><a href="#specified"><span class=secno>9.1. </span> Finding the
specified value</a>
- <li><a href="#computed"><span class=secno>10.2. </span> Finding the
+ <li><a href="#computed"><span class=secno>9.2. </span> Finding the
computed value</a>
- <li><a href="#finding-the-used-value"><span class=secno>10.3.
+ <li><a href="#finding-the-used-value"><span class=secno>9.3.
</span>Finding the used value</a>
- <li><a href="#actual"><span class=secno>10.4. </span> Finding the actual
+ <li><a href="#actual"><span class=secno>9.4. </span> Finding the actual
value</a>
- <li><a href="#stages-examples"><span class=secno>10.5. </span>
+ <li><a href="#stages-examples"><span class=secno>9.5. </span>
Examples</a>
</ul>
@@ -1230,53 +1217,7 @@
CSS Image Values Level 3 must interpret <a
href="#image-value"><code><image></code></a> as defined therein.
- <h2 id=layout-values><span class=secno>8. </span> Layout-specific Data
- Types</h2>
-
- <h3 id=proportions><span class=secno>8.1. </span> Proportions: the
- ‘<code class=css><fraction></code>’ type and ‘<a
- href="#fr-unit"><code class=css>fr</code></a>’ unit</h3>
-
- <p>The <dfn id=fr-unit title=fr>fr unit</dfn> is used to represent
- proportions, such as the proportions used to distribute remaining space in
- a flex layout computation. <a href="#CSS3-FLEXBOX"
- rel=biblioentry>[CSS3-FLEXBOX]<!--{{CSS3-FLEXBOX}}--></a> When multiple
- fractions participate in a calculation, the remainder is distributed
- proportionally to their numeric value.
-
- <div class=example>
- <pre>
-<!-- -->border-parts: 10px 1fr 10px;
-<!-- -->border-parts: 10px 1fr 10px 1fr 10px;
-<!-- -->border-parts: 10px 2fr 10px 2fr 10px;</pre>
- </div>
-
- <h3 id=grids><span class=secno>8.2. </span> Grid Units: the ‘<code
- class=css><grid></code>’ type and ‘<a
- href="#gr-unit"><code class=css>gr</code></a>’ unit</h3>
-
- <p>A grid is a set of invisible vertical and horizontal lines that can be
- used to align content. In CSS, grid lines can be established implicitly
- (as in <a href="#CSS3COL" rel=biblioentry>[CSS3COL]<!--{{CSS3COL}}--></a>)
- or explicitly (as in <a href="#CSS3GRID"
- rel=biblioentry>[CSS3GRID]<!--{{CSS3GRID}}--></a>). In either case, the
- distance between grid lines can be referred to by the <dfn id=gr-unit
- title=gr>‘<code class=css>gr</code>’ unit</dfn>.
-
- <div class=example>
- <pre>
-<!-- -->img {
-<!-- --> float: top left multicol;
-<!-- --> float-offset: 2gr;
-<!-- --> width: 1gr;
-<!-- -->}</pre>
- </div>
-
- <p>Grid lines can be laid out in uneven patterns. Therefore, the ‘<a
- href="#gr-unit"><code class=css>gr</code></a>’ unit is not linear.
- For example, "2gr" is not necessarily twice as long as "1gr".
-
- <h2 id=functional-notation><span class=secno>9. </span> Functional
+ <h2 id=functional-notation><span class=secno>8. </span> Functional
Notations</h2>
<p>Some values use a <dfn id=functional-notation0>functional notation</dfn>
@@ -1294,7 +1235,7 @@
<!-- -->content: counter(list-item) ". ";
<!-- -->width: calc(50% - 2em);</pre>
- <h3 id=calc><span class=secno>9.1. </span> Mathematical Expressions:
+ <h3 id=calc><span class=secno>8.1. </span> Mathematical Expressions:
‘<a href="#calc0"><code class=css>calc()</code></a>’,
‘<a href="#min"><code class=css>min()</code></a>’ and
‘<a href="#max"><code class=css>max()</code></a>’</h3>
@@ -1454,7 +1395,7 @@
treated as if ‘<code class=property>auto</code>’ had been
specified.
- <h3 id=cycle><span class=secno>9.2. </span> Cycling Values: ‘<a
+ <h3 id=cycle><span class=secno>8.2. </span> Cycling Values: ‘<a
href="#cycle-value"><code class=css>cycle()</code></a>’</h3>
<p>The <dfn id=cycle-value>cycle()</dfn> expression allows descendant
@@ -1512,7 +1453,7 @@
class=css>max()</code></a>’ notations. Declarations containing such
constructs are invalid.
- <h3 id=attr><span class=secno>9.3. </span> Attribute References: ‘<a
+ <h3 id=attr><span class=secno>8.3. </span> Attribute References: ‘<a
href="#attr-value"><code class=css>attr()</code></a>’</h3>
<p>The <dfn id=attr-value>attr()</dfn> function returns the value of an
@@ -1654,7 +1595,7 @@
<dt>‘<code class=css>px</code>’
- <dt>‘<a href="#gr-unit"><code class=css>gr</code></a>’
+ <dt>‘<code class=css>gr</code>’
<dt>‘<a href="#rem-unit"><code class=css>rem</code></a>’
@@ -1837,7 +1778,7 @@
</div>
-->
- <h2 id=value-stages><span class=secno>10. </span> Stages of Value
+ <h2 id=value-stages><span class=secno>9. </span> Stages of Value
Computation</h2>
<p class=issue>Shouldn't this section move to <a href="#CSS3CASCADE"
@@ -1866,7 +1807,7 @@
local environment.
</ul>
- <h3 id=specified><span class=secno>10.1. </span> Finding the <dfn
+ <h3 id=specified><span class=secno>9.1. </span> Finding the <dfn
id=specified-value>specified value</dfn></h3>
<p>The <dfn id=specified-value0>specified value</dfn> is the output of the
@@ -1885,7 +1826,7 @@
href="#specified-value0"><i>specified value</i></a> exists for every
property on every element.
- <h3 id=computed><span class=secno>10.2. </span> Finding the computed value</h3>
+ <h3 id=computed><span class=secno>9.2. </span> Finding the computed value</h3>
<p>A <a href="#specified-value0"><i>specified value</i></a> can be either
absolute (i.e., not relative to another value, as in ‘<code
@@ -1919,7 +1860,7 @@
However, some properties may define the computed value of a property for
an element to depend on whether the property applies to that element.
- <h3 id=finding-the-used-value><span class=secno>10.3. </span>Finding the
+ <h3 id=finding-the-used-value><span class=secno>9.3. </span>Finding the
<dfn id=used-value>used value</dfn></h3>
<p><i>Computed values</i> are processed as far as possible without
@@ -1931,7 +1872,7 @@
href="#computed-value"><i>computed value</i></a> and resolving any
remaining dependencies into an absolute value.
- <h3 id=actual><span class=secno>10.4. </span> Finding the actual value</h3>
+ <h3 id=actual><span class=secno>9.4. </span> Finding the actual value</h3>
<p>A <a href="#used-value0"><i>used value</i></a> is in principle ready to
be used, but a user agent may not be able to make use of the value in a
@@ -1953,7 +1894,7 @@
lines there is in a certain element. See examples (j) and (k) in the <a
href="#stages-examples">table below</a>.
- <h3 id=stages-examples><span class=secno>10.5. </span> Examples</h3>
+ <h3 id=stages-examples><span class=secno>9.5. </span> Examples</h3>
<table class=data>
<thead>
@@ -2178,29 +2119,29 @@
<dt id=CSS21>[CSS21]
<dd>Bert Bos; et al. <a
- href="http://www.w3.org/TR/2011/REC-CSS2-20110607/"><cite>Cascading Style
+ href="http://www.w3.org/TR/2011/REC-CSS2-20110607"><cite>Cascading Style
Sheets Level 2 Revision 1 (CSS 2.1) Specification.</cite></a> 7 June
2011. W3C Recommendation. URL: <a
- href="http://www.w3.org/TR/2011/REC-CSS2-20110607/">http://www.w3.org/TR/2011/REC-CSS2-20110607/</a>
+ href="http://www.w3.org/TR/2011/REC-CSS2-20110607">http://www.w3.org/TR/2011/REC-CSS2-20110607</a>
</dd>
<!---->
<dt id=CSS3-IMAGES>[CSS3-IMAGES]
<dd>Elika J. Etemad; Tab Atkins Jr. <a
- href="http://www.w3.org/TR/2011/WD-css3-images-20110712/"><cite>CSS Image
- Values and Replaced Content Module Level 3.</cite></a> 12 July 2011. W3C
- Working Draft. (Work in progress.) URL: <a
- href="http://www.w3.org/TR/2011/WD-css3-images-20110712/">http://www.w3.org/TR/2011/WD-css3-images-20110712/</a>
+ href="http://www.w3.org/TR/2011/WD-css3-images-20110908/"><cite>CSS Image
+ Values and Replaced Content Module Level 3.</cite></a> 8 September 2011.
+ W3C Working Draft. (Work in progress.) URL: <a
+ href="http://www.w3.org/TR/2011/WD-css3-images-20110908/">http://www.w3.org/TR/2011/WD-css3-images-20110908/</a>
</dd>
<!---->
<dt id=CSS3COLOR>[CSS3COLOR]
<dd>Tantek Çelik; Chris Lilley; L. David Baron. <a
- href="http://www.w3.org/TR/2011/REC-css3-color-20110607/"><cite>CSS Color
+ href="http://www.w3.org/TR/2011/REC-css3-color-20110607"><cite>CSS Color
Module Level 3.</cite></a> 7 June 2011. W3C Recommendation. URL: <a
- href="http://www.w3.org/TR/2011/REC-css3-color-20110607/">http://www.w3.org/TR/2011/REC-css3-color-20110607/</a>
+ href="http://www.w3.org/TR/2011/REC-css3-color-20110607">http://www.w3.org/TR/2011/REC-css3-color-20110607</a>
</dd>
<!---->
</dl>
@@ -2214,16 +2155,6 @@
<dt style="display: none"><!-- keeps the doc valid if the DL is empty -->
<!---->
- <dt id=CSS3-FLEXBOX>[CSS3-FLEXBOX]
-
- <dd>Tab Atkins Jr.; Alex Mogilevsky; L. David Baron. <a
- href="http://www.w3.org/TR/2011/WD-css3-flexbox-20110322/"><cite>Flexible
- Box Layout Module.</cite></a> 22 March 2011. W3C Working Draft. (Work in
- progress.) URL: <a
- href="http://www.w3.org/TR/2011/WD-css3-flexbox-20110322/">http://www.w3.org/TR/2011/WD-css3-flexbox-20110322/</a>
- </dd>
- <!---->
-
<dt id=CSS3CASCADE>[CSS3CASCADE]
<dd>Håkon Wium Lie. <a
@@ -2234,26 +2165,6 @@
</dd>
<!---->
- <dt id=CSS3COL>[CSS3COL]
-
- <dd>Håkon Wium Lie. <a
- href="http://www.w3.org/TR/2011/CR-css3-multicol-20110412"><cite>CSS
- Multi-column Layout Module.</cite></a> 12 April 2011. W3C Candidate
- Recommendation. (Work in progress.) URL: <a
- href="http://www.w3.org/TR/2011/CR-css3-multicol-20110412">http://www.w3.org/TR/2011/CR-css3-multicol-20110412</a>
- </dd>
- <!---->
-
- <dt id=CSS3GRID>[CSS3GRID]
-
- <dd>Alex Mogilevsky; Markus Mielke. <a
- href="http://www.w3.org/TR/2007/WD-css3-grid-20070905"><cite>CSS Grid
- Positioning Module Level 3.</cite></a> 5 September 2007. W3C Working
- Draft. (Work in progress.) URL: <a
- href="http://www.w3.org/TR/2007/WD-css3-grid-20070905">http://www.w3.org/TR/2007/WD-css3-grid-20070905</a>
- </dd>
- <!---->
-
<dt id=URI>[URI]
<dd>T. Berners-Lee; R. Fielding; L. Masinter. <a
@@ -2274,15 +2185,15 @@
title="absolute length units"><strong>5.2.</strong></a>
<li>actual value, <a href="#actual-value"
- title="actual value"><strong>10.4.</strong></a>
+ title="actual value"><strong>9.4.</strong></a>
<li><angle>, <a href="#angle-value"
title="<angle>"><strong>6.1.</strong></a>
- <li>attr(), <a href="#attr-value" title="attr()"><strong>9.3.</strong></a>
+ <li>attr(), <a href="#attr-value" title="attr()"><strong>8.3.</strong></a>
- <li>calc(), <a href="#calc0" title="calc()"><strong>9.1.</strong></a>
+ <li>calc(), <a href="#calc0" title="calc()"><strong>8.1.</strong></a>
<li>ch, <a href="#ch-unit" title=ch><strong>5.1.1.</strong></a>
@@ -2290,10 +2201,10 @@
href="#color-value" title="<color>"><strong>7.1.</strong></a>
<li>computed value, <a href="#computed-value"
- title="computed value"><strong>10.2.</strong></a>
+ title="computed value"><strong>9.2.</strong></a>
<li>cycle(), <a href="#cycle-value"
- title="cycle()"><strong>9.2.</strong></a>
+ title="cycle()"><strong>8.2.</strong></a>
<li>deg, <a href="#deg" title=deg><strong>6.1.</strong></a>
@@ -2304,15 +2215,11 @@
<li>ex, <a href="#ex-unit" title=ex><strong>5.1.1.</strong></a>
- <li>fr, <a href="#fr-unit" title=fr><strong>8.1.</strong></a>
-
<li><frequency>, <a href="#frequency-value"
title="<frequency>"><strong>6.3.</strong></a>
<li>functional notation, <a href="#functional-notation0"
- title="functional notation"><strong>9.</strong></a>
-
- <li>gr, <a href="#gr-unit" title=gr><strong>8.2.</strong></a>
+ title="functional notation"><strong>8.</strong></a>
<li>grad, <a href="#grad" title=grad><strong>6.1.</strong></a>
@@ -2344,9 +2251,9 @@
<li><a href="#length-value"><code><length></code></a>, <a
href="#length-value" title="<length>"><strong>5.</strong></a>
- <li>max(), <a href="#max" title="max()"><strong>9.1.</strong></a>
+ <li>max(), <a href="#max" title="max()"><strong>8.1.</strong></a>
- <li>min(), <a href="#min" title="min()"><strong>9.1.</strong></a>
+ <li>min(), <a href="#min" title="min()"><strong>8.1.</strong></a>
<li>ms, <a href="#ms" title=ms><strong>6.2.</strong></a>
@@ -2373,14 +2280,14 @@
<li>rem, <a href="#rem-unit" title=rem><strong>5.1.1.</strong></a>
<li>resolved type, <a href="#resolved-type"
- title="resolved type"><strong>9.1.</strong></a>
+ title="resolved type"><strong>8.1.</strong></a>
<li>s, <a href="#s" title=s><strong>6.2.</strong></a>
<li>specified value, <a href="#specified-value"
- title="specified value"><strong>10.1.</strong></a>, <a
+ title="specified value"><strong>9.1.</strong></a>, <a
href="#specified-value0"
- title="specified value"><strong>10.1.</strong></a>
+ title="specified value"><strong>9.1.</strong></a>
<li><a href="#string-value"><code><string></code></a>, <a
href="#string-value" title="<string>"><strong>3.3.</strong></a>
@@ -2396,8 +2303,8 @@
href="#url-value" title="<url>"><strong>3.4.</strong></a>
<li>used value, <a href="#used-value"
- title="used value"><strong>10.3.</strong></a>, <a href="#used-value0"
- title="used value"><strong>10.3.</strong></a>
+ title="used value"><strong>9.3.</strong></a>, <a href="#used-value0"
+ title="used value"><strong>9.3.</strong></a>
<li>vh, <a href="#vh-unit" title=vh><strong>5.1.2.</strong></a>
@@ -2405,6 +2312,6 @@
<li>vw, <a href="#vw-unit" title=vw><strong>5.1.2.</strong></a>
- <li>wqname, <a href="#wqname" title=wqname><strong>9.3.</strong></a>
+ <li>wqname, <a href="#wqname" title=wqname><strong>8.3.</strong></a>
</ul>
<!--end-index-->
Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-values/Overview.src.html,v
retrieving revision 1.131
retrieving revision 1.132
diff -u -d -r1.131 -r1.132
--- Overview.src.html 25 Oct 2011 22:24:27 -0000 1.131
+++ Overview.src.html 31 Oct 2011 17:01:09 -0000 1.132
@@ -805,47 +805,6 @@
[[!CSS3-IMAGES]]: UAs that support CSS Image Values Level 3 must interpret
<code><image></code> as defined therein.
-<h2 id="layout-values">
-Layout-specific Data Types</h2>
-
-<h3 id="proportions">
-Proportions: the ''<fraction>'' type and ''fr'' unit</h3>
-
- <p>The <dfn title="fr">fr unit</dfn> is used to represent proportions,
- such as the proportions used to distribute remaining space in a flex
- layout computation. [[CSS3-FLEXBOX]] When multiple fractions participate
- in a calculation, the remainder is distributed proportionally to their
- numeric value.
-
- <div class="example">
- <pre>
-<!-- -->border-parts: 10px 1fr 10px;
-<!-- -->border-parts: 10px 1fr 10px 1fr 10px;
-<!-- -->border-parts: 10px 2fr 10px 2fr 10px;</pre>
- </div>
-
-<h3 id="grids">
-Grid Units: the ''<grid>'' type and ''gr'' unit</h3>
-
- <p>A grid is a set of invisible vertical and horizontal lines that can
- be used to align content. In CSS, grid lines can be established
- implicitly (as in [[CSS3COL]]) or explicitly (as in [[CSS3GRID]]).
- In either case, the distance between grid lines can be referred to by
- the <dfn title="gr">''gr'' unit</dfn>.
-
- <div class="example">
- <pre>
-<!-- -->img {
-<!-- --> float: top left multicol;
-<!-- --> float-offset: 2gr;
-<!-- --> width: 1gr;
-<!-- -->}</pre>
- </div>
-
- <p>Grid lines can be laid out in uneven patterns. Therefore, the
- ''gr'' unit is not linear. For example, "2gr" is not necessarily
- twice as long as "1gr".
-
<h2 id="functional-notation">
Functional Notations</h2>
Received on Monday, 31 October 2011 17:01:19 UTC