Skip to content

Commit 7f3fb42

Browse files
committed
[css3-transitions] Remove properties from the table that aren't in CSS21 or css3-color.
This implements the remainder of this resolution at the Tucson face-to-face dated 2013-02-04 11:40:47 -0700 that goes in this spec (though many additions to other specs still need to be made), with the slight modification of not including the Level 2 properties dropped between 2.0 and 2.1 (which I was the one pushing for), since two of the relevant properties (font-stretch and font-size-adjust) have their animatability defined in the editor's draft of css3-fonts and the other one (marker-offset) was noted as questionable at the time of the resolution since the property may not be needed in the long term.
1 parent b7ad703 commit 7f3fb42

2 files changed

Lines changed: 9 additions & 60 deletions

File tree

css3-transitions/Overview.html

Lines changed: 8 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
rel=dcterms.rights>
1111
<meta content="CSS Transitions" name=dcterms.title>
1212
<meta content=text name=dcterms.type>
13-
<meta content=2013-02-05 name=dcterms.issued>
13+
<meta content=2013-02-07 name=dcterms.issued>
1414
<meta content="http://dev.w3.org/csswg/css3-transitions/"
1515
name=dcterms.creator>
1616
<meta content=W3C name=dcterms.publisher>
17-
<meta content="http://www.w3.org/TR/2013/ED-css3-transitions-20130205/"
17+
<meta content="http://www.w3.org/TR/2013/ED-css3-transitions-20130207/"
1818
name=dcterms.identifier>
1919
<meta content="text/html; charset=utf-8" http-equiv=Content-Type>
2020
<link href="../default.css" rel=stylesheet type="text/css">
@@ -38,15 +38,15 @@
3838

3939
<h1>CSS Transitions</h1>
4040

41-
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 5 February
41+
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 7 February
4242
2013</h2>
4343

4444
<dl>
4545
<dt>This version:
4646

47-
<dd> <a href="http://www.w3.org/TR/2013/ED-css3-transitions-20130205/">
47+
<dd> <a href="http://www.w3.org/TR/2013/ED-css3-transitions-20130207/">
4848
http://dev.w3.org/csswg/css3-transitions/</a>
49-
<!--http://www.w3.org/TR/2013/WD-css3-transitions-20130205/-->
49+
<!--http://www.w3.org/TR/2013/WD-css3-transitions-20130207/-->
5050

5151
<dt>Latest version:
5252

@@ -1309,9 +1309,9 @@ <h3 id=animatable-css><span class=secno>7.1. </span><a
13091309
id=properties-from-css-> Properties from CSS </a></h3>
13101310

13111311
<p> The following definitions define the animation behavior for properties
1312-
in CSS Level 2 (<a href="#CSS2" rel=biblioentry>[CSS2]<!--{{CSS2}}--></a>,
1313-
<a href="#CSS21" rel=biblioentry>[CSS21]<!--{{CSS21}}--></a>) and in Level
1314-
3 of the CSS Color Module (<a href="#CSS3COLOR"
1312+
in CSS Level 2 Revision 1 (<a href="#CSS21"
1313+
rel=biblioentry>[CSS21]<!--{{CSS21}}--></a>) and in Level 3 of the CSS
1314+
Color Module (<a href="#CSS3COLOR"
13151315
rel=biblioentry>[CSS3COLOR]<!--{{CSS3COLOR}}--></a>).
13161316

13171317
<table class=animatable-properties>
@@ -1394,11 +1394,6 @@ <h3 id=animatable-css><span class=secno>7.1. </span><a
13941394

13951395
<td>as <a href="#animtype-color">color</a>
13961396

1397-
<tr>
1398-
<td>crop <span class=issue>move to css3-content</span>
1399-
1400-
<td>as rectangle
1401-
14021397
<tr>
14031398
<td>font-size
14041399

@@ -1480,11 +1475,6 @@ <h3 id=animatable-css><span class=secno>7.1. </span><a
14801475

14811476
<td>as <a href="#animtype-color">color</a>
14821477

1483-
<tr>
1484-
<td>outline-offset <span class=issue>move to css3-ui</span>
1485-
1486-
<td>as <a href="#animtype-length">length</a>
1487-
14881478
<tr>
14891479
<td>outline-width
14901480

@@ -1556,12 +1546,6 @@ <h3 id=animatable-css><span class=secno>7.1. </span><a
15561546
<td>as <a href="#animtype-integer">integer</a>
15571547
</table>
15581548

1559-
<p class=issue> This list omits the following properties that Gecko can
1560-
animate, and which likely should be included: background-size,
1561-
border-*-radius, box-shadow, column-count, column-gap, column-rule-color,
1562-
column-rule-width, column-width, font-size-adjust, font-stretch,
1563-
marker-offset, text-decoration-color, transform, transform-origin.
1564-
15651549
<h3 id=animatable-svg><span class=secno>7.2. </span><a
15661550
id=properties-from-svg-> Properties from SVG </a></h3>
15671551

@@ -1637,16 +1621,6 @@ <h3 class=no-num id=other-references>Other references</h3>
16371621
<dt style="display: none"><!-- keeps the doc valid if the DL is empty -->
16381622
<!---->
16391623

1640-
<dt id=CSS2>[CSS2]
1641-
1642-
<dd>Ian Jacobs; et al. <a
1643-
href="http://www.w3.org/TR/2008/REC-CSS2-20080411"><cite>Cascading Style
1644-
Sheets, level 2 (CSS2) Specification.</cite></a> 11 April 2008. W3C
1645-
Recommendation. URL: <a
1646-
href="http://www.w3.org/TR/2008/REC-CSS2-20080411">http://www.w3.org/TR/2008/REC-CSS2-20080411</a>
1647-
</dd>
1648-
<!---->
1649-
16501624
<dt id=CSS21>[CSS21]
16511625

16521626
<dd>Bert Bos; et al. <a

css3-transitions/Overview.src.html

Lines changed: 1 addition & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1338,7 +1338,7 @@ <h3 id="animatable-css"><a id="properties-from-css-">
13381338

13391339
<p>
13401340
The following definitions define the animation behavior for
1341-
properties in CSS Level 2 ([[CSS2]], [[CSS21]]) and in Level 3 of
1341+
properties in CSS Level 2 Revision 1 ([[CSS21]]) and in Level 3 of
13421342
the CSS Color Module ([[CSS3COLOR]]).
13431343
</p>
13441344

@@ -1388,9 +1388,6 @@ <h3 id="animatable-css"><a id="properties-from-css-">
13881388
<tr>
13891389
<td>color</td><td>as <a href="#animtype-color">color</a></td>
13901390
</tr>
1391-
<tr>
1392-
<td>crop <span class="issue">move to css3-content</span></td><td>as rectangle</td>
1393-
</tr>
13941391
<tr>
13951392
<td>font-size</td><td>as <a href="#animtype-length">length</a></td>
13961393
</tr>
@@ -1439,9 +1436,6 @@ <h3 id="animatable-css"><a id="properties-from-css-">
14391436
<tr>
14401437
<td>outline-color</td><td>as <a href="#animtype-color">color</a></td>
14411438
</tr>
1442-
<tr>
1443-
<td>outline-offset <span class="issue">move to css3-ui</span></td><td>as <a href="#animtype-length">length</a></td>
1444-
</tr>
14451439
<tr>
14461440
<td>outline-width</td><td>as <a href="#animtype-length">length</a></td>
14471441
</tr>
@@ -1486,25 +1480,6 @@ <h3 id="animatable-css"><a id="properties-from-css-">
14861480
</tr>
14871481
</table>
14881482

1489-
<p class="issue">
1490-
This list omits the following properties that Gecko can animate, and
1491-
which likely should be included:
1492-
background-size,
1493-
border-*-radius,
1494-
box-shadow,
1495-
column-count,
1496-
column-gap,
1497-
column-rule-color,
1498-
column-rule-width,
1499-
column-width,
1500-
font-size-adjust,
1501-
font-stretch,
1502-
marker-offset,
1503-
text-decoration-color,
1504-
transform,
1505-
transform-origin.
1506-
</p>
1507-
15081483
<h3 id="animatable-svg"><a id="properties-from-svg-">
15091484
Properties from SVG
15101485
</a></h3>

0 commit comments

Comments
 (0)