Skip to content

Commit bce37c2

Browse files
committed
- Cleaned up timing function equivalence description ("1.0" -> "1")
http://lists.w3.org/Archives/Public/www-style/2012Dec/0274.html [Note: I'm seeing a lot of other changes in the generated output after running 'make'. I assume these are all correct and that previous commits had simply forgot to update the generated Overview.html. Fingers crossed.]
1 parent 12c9a86 commit bce37c2

File tree

3 files changed

+61
-60
lines changed

3 files changed

+61
-60
lines changed

css3-transitions/ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2013-01-09 dino@apple.com
2+
- Cleaned up timing function equivalence description ("1.0" -> "1")
3+
http://lists.w3.org/Archives/Public/www-style/2012Dec/0274.html
4+
15
2012-02-17 dbaron@dbaron.org
26
- Allow 'all' within the list in transition-property, as resolved in
37
http://lists.w3.org/Archives/Public/www-style/2011Nov/0709.html .

css3-transitions/Overview.html

Lines changed: 52 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,17 @@
55
<head profile="http://dublincore.org/documents/2008/08/04/dc-html/ ">
66
<title>CSS Transitions</title>
77

8-
<link href="http://purl.org/dc/terms/" rel=schema.DC>
9-
<meta content="CSS Transitions" name=DC.title>
10-
<meta content=text name=DC.type>
11-
<meta content=2012-09-20 name=DC.issued>
12-
<meta content="http://dev.w3.org/csswg/css3-transitions/" name=DC.creator>
13-
<meta content=W3C name=DC.publisher>
14-
<meta content="http://www.w3.org/TR/2012/ED-css3-transitions-20120920/"
15-
name=DC.identifier>
8+
<link href="http://purl.org/dc/terms/" rel=schema.dcterms>
169
<link href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright"
17-
rel=DC.rights>
10+
rel=dcterms.rights>
11+
<meta content="CSS Transitions" name=dcterms.title>
12+
<meta content=text name=dcterms.type>
13+
<meta content=2013-01-09 name=dcterms.issued>
14+
<meta content="http://dev.w3.org/csswg/css3-transitions/"
15+
name=dcterms.creator>
16+
<meta content=W3C name=dcterms.publisher>
17+
<meta content="http://www.w3.org/TR/2013/ED-css3-transitions-20130109/"
18+
name=dcterms.identifier>
1819
<meta content="text/html; charset=utf-8" http-equiv=Content-Type>
1920
<link href="../default.css" rel=stylesheet type="text/css">
2021
<style type="text/css">
@@ -37,15 +38,14 @@
3738

3839
<h1>CSS Transitions</h1>
3940

40-
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 20 September
41-
2012</h2>
41+
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 9 January 2013</h2>
4242

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

46-
<dd> <a href="http://www.w3.org/TR/2012/ED-css3-transitions-20120920/">
46+
<dd> <a href="http://www.w3.org/TR/2013/ED-css3-transitions-20130109/">
4747
http://dev.w3.org/csswg/css3-transitions/</a>
48-
<!--http://www.w3.org/TR/2012/WD-css3-transitions-20120920/-->
48+
<!--http://www.w3.org/TR/2013/WD-css3-transitions-20130109/-->
4949

5050
<dt>Latest version:
5151

@@ -96,7 +96,7 @@ <h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 20 September
9696
<!--begin-copyright-->
9797
<p class=copyright><a
9898
href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright"
99-
rel=license>Copyright</a> © 2012 <a href="http://www.w3.org/"><abbr
99+
rel=license>Copyright</a> © 2013 <a href="http://www.w3.org/"><abbr
100100
title="World Wide Web Consortium">W3C</abbr></a><sup>®</sup> (<a
101101
href="http://www.csail.mit.edu/"><abbr
102102
title="Massachusetts Institute of Technology">MIT</abbr></a>, <a
@@ -644,27 +644,24 @@ <h3 id=transition-timing-function-property><span class=secno>2.3. </span><a
644644
<dl>
645645
<dt> ease
646646

647-
<dd> The ease function is equivalent to cubic-bezier(0.25, 0.1, 0.25,
648-
1.0).
647+
<dd> The ease function is equivalent to cubic-bezier(0.25, 0.1, 0.25, 1).
649648

650649
<dt> linear
651650

652-
<dd> The linear function is equivalent to cubic-bezier(0.0, 0.0, 1.0,
653-
1.0).
651+
<dd> The linear function is equivalent to cubic-bezier(0, 0, 1, 1).
654652

655653
<dt> ease-in
656654

657-
<dd> The ease-in function is equivalent to cubic-bezier(0.42, 0, 1.0,
658-
1.0).
655+
<dd> The ease-in function is equivalent to cubic-bezier(0.42, 0, 1, 1).
659656

660657
<dt> ease-out
661658

662-
<dd> The ease-out function is equivalent to cubic-bezier(0, 0, 0.58, 1.0).
659+
<dd> The ease-out function is equivalent to cubic-bezier(0, 0, 0.58, 1).
663660

664661
<dt> ease-in-out
665662

666663
<dd> The ease-in-out function is equivalent to cubic-bezier(0.42, 0, 0.58,
667-
1.0)
664+
1)
668665

669666
<dt> step-start
670667

@@ -1656,10 +1653,10 @@ <h3 class=no-num id=normative-references>Normative references</h3>
16561653
<dt id=CSS3-TRANSFORMS>[CSS3-TRANSFORMS]
16571654

16581655
<dd>Simon Fraser; et al. <a
1659-
href="http://www.w3.org/TR/2012/WD-css3-transforms-20120403/"><cite>CSS
1660-
Transforms.</cite></a> 3 April 2012. W3C Working Draft. (Work in
1656+
href="http://www.w3.org/TR/2012/WD-css3-transforms-20120911/"><cite>CSS
1657+
Transforms.</cite></a> 11 September 2012. W3C Working Draft. (Work in
16611658
progress.) URL: <a
1662-
href="http://www.w3.org/TR/2012/WD-css3-transforms-20120403/">http://www.w3.org/TR/2012/WD-css3-transforms-20120403/</a>
1659+
href="http://www.w3.org/TR/2012/WD-css3-transforms-20120911/">http://www.w3.org/TR/2012/WD-css3-transforms-20120911/</a>
16631660
</dd>
16641661
<!---->
16651662
</dl>
@@ -1676,10 +1673,10 @@ <h3 class=no-num id=other-references>Other references</h3>
16761673
<dt id=CSS21>[CSS21]
16771674

16781675
<dd>Bert Bos; et al. <a
1679-
href="http://www.w3.org/TR/2011/REC-CSS2-20110607"><cite>Cascading Style
1676+
href="http://www.w3.org/TR/2011/REC-CSS2-20110607/"><cite>Cascading Style
16801677
Sheets Level 2 Revision 1 (CSS 2.1) Specification.</cite></a> 7 June
16811678
2011. W3C Recommendation. URL: <a
1682-
href="http://www.w3.org/TR/2011/REC-CSS2-20110607">http://www.w3.org/TR/2011/REC-CSS2-20110607</a>
1679+
href="http://www.w3.org/TR/2011/REC-CSS2-20110607/">http://www.w3.org/TR/2011/REC-CSS2-20110607/</a>
16831680
</dd>
16841681
<!---->
16851682

@@ -1717,13 +1714,13 @@ <h2 class=no-num id=property-index>Property index</h2>
17171714

17181715
<tbody>
17191716
<tr>
1720-
<th><a class=property href="#transition-delay">transition-delay</a>
1717+
<th><a class=property href="#transition">transition</a>
17211718

1722-
<td>&lt;time&gt; [, &lt;time&gt;]*
1719+
<td>&lt;single-transition&gt; [ ‘,’ &lt;single-transition&gt; ]*
17231720

1724-
<td>0s
1721+
<td>see individual properties
17251722

1726-
<td>all elements, :before and :after pseudo elements
1723+
<td>
17271724

17281725
<td>no
17291726

@@ -1732,14 +1729,13 @@ <h2 class=no-num id=property-index>Property index</h2>
17321729
<td>interactive
17331730

17341731
<tr>
1735-
<th><a class=property
1736-
href="#transition-duration">transition-duration</a>
1732+
<th><a class=property href="#transition-delay">transition-delay</a>
17371733

17381734
<td>&lt;time&gt; [, &lt;time&gt;]*
17391735

17401736
<td>0s
17411737

1742-
<td>all elements, :before and :after pseudo elements
1738+
<td>
17431739

17441740
<td>no
17451741

@@ -1749,35 +1745,36 @@ <h2 class=no-num id=property-index>Property index</h2>
17491745

17501746
<tr>
17511747
<th><a class=property
1752-
href="#transition-property">transition-property</a>
1748+
href="#transition-duration">transition-duration</a>
17531749

1754-
<td>none | &lt;single-transition-property&gt; [ ‘,’
1755-
&lt;single-transition-property&gt; ]*
1750+
<td>&lt;time&gt; [, &lt;time&gt;]*
17561751

1757-
<td>all
1752+
<td>0s
17581753

1759-
<td>all elements, :before and :after pseudo elements
1754+
<td>
17601755

17611756
<td>no
17621757

17631758
<td>N/A
17641759

1765-
<td>visual
1760+
<td>interactive
17661761

17671762
<tr>
1768-
<th><a class=property href="#transition">transition</a>
1763+
<th><a class=property
1764+
href="#transition-property">transition-property</a>
17691765

1770-
<td>&lt;single-transition&gt; [ ‘,’ &lt;single-transition&gt; ]*
1766+
<td>none | &lt;single-transition-property&gt; [ ‘,’
1767+
&lt;single-transition-property&gt; ]*
17711768

1772-
<td>see individual properties
1769+
<td>all
17731770

1774-
<td>all elements, :before and :after pseudo elements
1771+
<td>
17751772

17761773
<td>no
17771774

17781775
<td>N/A
17791776

1780-
<td>interactive
1777+
<td>visual
17811778

17821779
<tr>
17831780
<th><a class=property
@@ -1788,7 +1785,7 @@ <h2 class=no-num id=property-index>Property index</h2>
17881785

17891786
<td>ease
17901787

1791-
<td>all elements, :before and :after pseudo elements
1788+
<td>
17921789

17931790
<td>no
17941791

@@ -1803,33 +1800,33 @@ <h2 class=no-num id=index>Index</h2>
18031800

18041801
<ul class=indexlist>
18051802
<li>combined duration, <a href="#combined-duration"
1806-
title="combined duration"><strong>3.</strong></a>
1803+
title="section 3."><strong>3.</strong></a>
18071804

18081805
<li>&lt;single-transition&gt;, <a href="#single-transition"
1809-
title="&lt;single-transition&gt;"><strong>2.5.</strong></a>
1806+
title="section 2.5."><strong>2.5.</strong></a>
18101807

18111808
<li>&lt;single-transition-property&gt;, <a
18121809
href="#single-transition-property"
1813-
title="&lt;single-transition-property&gt;"><strong>2.1.</strong></a>
1810+
title="section 2.1."><strong>2.1.</strong></a>
18141811

18151812
<li>&lt;single-transition-timing-function&gt;, <a
18161813
href="#single-transition-timing-function"
1817-
title="&lt;single-transition-timing-function&gt;"><strong>2.3.</strong></a>
1814+
title="section 2.3."><strong>2.3.</strong></a>
18181815

18191816
<li>transition, <a href="#transition"
1820-
title=transition><strong>2.5.</strong></a>
1817+
title="section 2.5."><strong>2.5.</strong></a>
18211818

18221819
<li>transition-delay, <a href="#transition-delay"
1823-
title=transition-delay><strong>2.4.</strong></a>
1820+
title="section 2.4."><strong>2.4.</strong></a>
18241821

18251822
<li>transition-duration, <a href="#transition-duration"
1826-
title=transition-duration><strong>2.2.</strong></a>
1823+
title="section 2.2."><strong>2.2.</strong></a>
18271824

18281825
<li>transition-property, <a href="#transition-property"
1829-
title=transition-property><strong>2.1.</strong></a>
1826+
title="section 2.1."><strong>2.1.</strong></a>
18301827

18311828
<li>transition-timing-function, <a href="#transition-timing-function"
1832-
title=transition-timing-function><strong>2.3.</strong></a>
1829+
title="section 2.3."><strong>2.3.</strong></a>
18331830
</ul>
18341831
<!--end-index-->
18351832
</html>

css3-transitions/Overview.src.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -583,31 +583,31 @@ <h3 id=transition-timing-function-property><a id=transition-timing-function_tag>
583583
ease
584584
</dt>
585585
<dd>
586-
The ease function is equivalent to cubic-bezier(0.25, 0.1, 0.25, 1.0).
586+
The ease function is equivalent to cubic-bezier(0.25, 0.1, 0.25, 1).
587587
</dd>
588588
<dt>
589589
linear
590590
</dt>
591591
<dd>
592-
The linear function is equivalent to cubic-bezier(0.0, 0.0, 1.0, 1.0).
592+
The linear function is equivalent to cubic-bezier(0, 0, 1, 1).
593593
</dd>
594594
<dt>
595595
ease-in
596596
</dt>
597597
<dd>
598-
The ease-in function is equivalent to cubic-bezier(0.42, 0, 1.0, 1.0).
598+
The ease-in function is equivalent to cubic-bezier(0.42, 0, 1, 1).
599599
</dd>
600600
<dt>
601601
ease-out
602602
</dt>
603603
<dd>
604-
The ease-out function is equivalent to cubic-bezier(0, 0, 0.58, 1.0).
604+
The ease-out function is equivalent to cubic-bezier(0, 0, 0.58, 1).
605605
</dd>
606606
<dt>
607607
ease-in-out
608608
</dt>
609609
<dd>
610-
The ease-in-out function is equivalent to cubic-bezier(0.42, 0, 0.58, 1.0)
610+
The ease-in-out function is equivalent to cubic-bezier(0.42, 0, 0.58, 1)
611611
</dd>
612612
<dt>
613613
step-start

0 commit comments

Comments
 (0)