- From: Simon Fraser via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 31 Jan 2012 21:30:37 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-transforms In directory hutz:/tmp/cvs-serv5759 Modified Files: ChangeLog Overview.html Transforms.src.html Log Message: 2012-01-31 simon.fraser@apple.com Add a definition for skew(x, y), fixing https://www.w3.org/Bugs/Public/show_bug.cgi?id=15537 Index: ChangeLog =================================================================== RCS file: /sources/public/csswg/css3-transforms/ChangeLog,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- ChangeLog 30 Jan 2012 20:50:21 -0000 1.7 +++ ChangeLog 31 Jan 2012 21:30:35 -0000 1.8 @@ -1,3 +1,6 @@ +2012-01-31 simon.fraser@apple.com + Add a definition for skew(x, y), fixing https://www.w3.org/Bugs/Public/show_bug.cgi?id=15537 + 2012-01-29 simon.fraser@apple.com Remove the issue-marker style that was no longer used. Fix a couple of typos. Index: Overview.html =================================================================== RCS file: /sources/public/csswg/css3-transforms/Overview.html,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- Overview.html 30 Jan 2012 20:50:21 -0000 1.17 +++ Overview.html 31 Jan 2012 21:30:35 -0000 1.18 @@ -36,15 +36,15 @@ <h1>CSS Transforms</h1> - <h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 30 January + <h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 31 January 2012</h2> <dl> <dt>This version: <dd> <a - href="http://www.w3.org/TR/2012/ED-css3-transforms-20120130/">http://dev.w3.org/csswg/css3-transforms/</a> - <!--http://www.w3.org/TR/2012/WD-css3-transforms-20120130--> + href="http://www.w3.org/TR/2012/ED-css3-transforms-20120131/">http://dev.w3.org/csswg/css3-transforms/</a> + <!--http://www.w3.org/TR/2012/WD-css3-transforms-20120131--> <dt>Latest version: @@ -1414,6 +1414,16 @@ example, rotate(90deg) would cause elements to appear rotated one-quarter of a turn in the clockwise direction. + <dt> <code class=css>skew(<x-angle>[, <angle>])</code> + + <dd> specifies a <a + href="http://www.w3.org/TR/SVG/coords.html#SkewXDefined">skew + transformation along the X axis</a> by the angle specified in the first + parameter, and a <a + href="http://www.w3.org/TR/SVG/coords.html#SkewYDefined">skew + transformation along the Y axis</a> by the angle specified in the second + parameter. If the second parameter is not provided, it has a value of 0. + <dt> <code class=css>skewX(<angle>)</code> <dd> specifies a <a Index: Transforms.src.html =================================================================== RCS file: /sources/public/csswg/css3-transforms/Transforms.src.html,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- Transforms.src.html 30 Jan 2012 20:50:21 -0000 1.20 +++ Transforms.src.html 31 Jan 2012 21:30:35 -0000 1.21 @@ -1263,6 +1263,14 @@ rotated one-quarter of a turn in the clockwise direction. </dd> <dt> + <code class="css">skew(<x-angle>[, <angle>])</code> + </dt> + <dd> + specifies a <a href="http://www.w3.org/TR/SVG/coords.html#SkewXDefined">skew transformation along the X axis</a> by the angle + specified in the first parameter, and a <a href="http://www.w3.org/TR/SVG/coords.html#SkewYDefined">skew transformation along the Y + axis</a> by the angle specified in the second parameter. If the second parameter is not provided, it has a value of 0. + </dd> + <dt> <code class="css">skewX(<angle>)</code> </dt> <dd>
Received on Tuesday, 31 January 2012 21:30:39 UTC