- From: Simon Fraser via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 21 Feb 2012 19:11:05 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-transforms
In directory hutz:/tmp/cvs-serv14685
Modified Files:
ChangeLog Overview.html Transforms.src.html
Log Message:
2012-02-07 simon.fraser@apple.com
Add a link to #perspective-function
Index: ChangeLog
===================================================================
RCS file: /sources/public/csswg/css3-transforms/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- ChangeLog 14 Feb 2012 06:13:13 -0000 1.15
+++ ChangeLog 21 Feb 2012 19:11:03 -0000 1.16
@@ -1,3 +1,6 @@
+2012-02-07 simon.fraser@apple.com
+ Add a link to #perspective-function
+
2012-02-13 dschulze@adobe.com
Corrected mistake in the rotate3d matrix.
Changed wording in introduction to match SVG and HTML.
Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-transforms/Overview.html,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- Overview.html 14 Feb 2012 06:13:13 -0000 1.25
+++ Overview.html 21 Feb 2012 19:11:03 -0000 1.26
@@ -36,15 +36,15 @@
<h1>CSS Transforms</h1>
- <h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 14 February
+ <h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 21 February
2012</h2>
<dl>
<dt>This version:
<dd> <a
- href="http://www.w3.org/TR/2012/ED-css3-transforms-20120214/">http://dev.w3.org/csswg/css3-transforms/</a>
- <!--http://www.w3.org/TR/2012/WD-css3-transforms-20120214-->
+ href="http://www.w3.org/TR/2012/ED-css3-transforms-20120221/">http://dev.w3.org/csswg/css3-transforms/</a>
+ <!--http://www.w3.org/TR/2012/WD-css3-transforms-20120221-->
<dt>Latest version:
@@ -576,10 +576,11 @@
href="#perspective-origin"><code
class=property>perspective-origin</code></a>
- <li>Multiply by the matrix that would be obtained from the <code
- class=css>perspective(<length>)</code> transform function, where
- the length is provided by the value of the <a href="#perspective"><code
- class=property>perspective</code></a> property
+ <li>Multiply by the matrix that would be obtained from the <a
+ href="#perspective-function"><code
+ class=css>perspective(<length>)</code></a> transform function,
+ where the length is provided by the value of the <a
+ href="#perspective"><code class=property>perspective</code></a> property
<li>Translate by the negated computed X and Y values of <a
href="#perspective-origin"><code
@@ -1479,7 +1480,8 @@
the given angle about the Z axis. This is a synonym for <code
class=css>rotate(<angle>)</code>.
- <dt> <code class=css>perspective(<length>)</code>
+ <dt id=perspective-function> <code
+ class=css>perspective(<length>)</code>
<dd> specifies a <a href="#PerspectiveDefined">perspective projection
matrix</a>. This matrix scales points in X and Y based on their Z value,
Index: Transforms.src.html
===================================================================
RCS file: /sources/public/csswg/css3-transforms/Transforms.src.html,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- Transforms.src.html 14 Feb 2012 06:13:14 -0000 1.28
+++ Transforms.src.html 21 Feb 2012 19:11:03 -0000 1.29
@@ -290,7 +290,6 @@
</pre>
</div>
-
<!-- This "in the HTML namespace" is awkward. Is there a better way? -->
<p>
In the HTML namespace, the transform property does not affect the flow of the content
@@ -367,7 +366,7 @@
<ol>
<li>Start with the identity matrix.</li>
<li>Translate by the computed X and Y values of <code class="property">perspective-origin</code></li>
- <li>Multiply by the matrix that would be obtained from the <code class="css">perspective(<length>)</code> transform function, where the length is provided by the value of the <code class="property">perspective</code> property</li>
+ <li>Multiply by the matrix that would be obtained from the <a href="#perspective-function"><code class="css">perspective(<length>)</code></a> transform function, where the length is provided by the value of the <code class="property">perspective</code> property</li>
<li>Translate by the negated computed X and Y values of <code class="property">perspective-origin</code></li>
</ol>
</p>
@@ -1339,7 +1338,7 @@
<dd>
specifies a clockwise <a href="#RotateZDefined">3D rotation</a> by the given angle about the Z axis. This is a synonym for <code class="css">rotate(<angle>)</code>.
</dd>
- <dt>
+ <dt id="perspective-function">
<code class="css">perspective(<length>)</code>
</dt>
<dd>
Received on Tuesday, 21 February 2012 19:11:10 UTC