Skip to content

Commit 3baee7b

Browse files
committed
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
1 parent ec3ac9c commit 3baee7b

3 files changed

Lines changed: 24 additions & 3 deletions

File tree

css3-transforms/ChangeLog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2012-01-31 simon.fraser@apple.com
2+
Add a definition for skew(x, y), fixing https://www.w3.org/Bugs/Public/show_bug.cgi?id=15537
3+
14
2012-01-29 simon.fraser@apple.com
25
Remove the issue-marker style that was no longer used.
36
Fix a couple of typos.

css3-transforms/Overview.html

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@
3636

3737
<h1>CSS Transforms</h1>
3838

39-
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 30 January
39+
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 31 January
4040
2012</h2>
4141

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

4545
<dd> <a
46-
href="http://www.w3.org/TR/2012/ED-css3-transforms-20120130/">http://dev.w3.org/csswg/css3-transforms/</a>
47-
<!--http://www.w3.org/TR/2012/WD-css3-transforms-20120130-->
46+
href="http://www.w3.org/TR/2012/ED-css3-transforms-20120131/">http://dev.w3.org/csswg/css3-transforms/</a>
47+
<!--http://www.w3.org/TR/2012/WD-css3-transforms-20120131-->
4848

4949
<dt>Latest version:
5050

@@ -1414,6 +1414,16 @@ <h3 id=two-d-transform-functions><span class=secno>12.1. </span>2D
14141414
example, rotate(90deg) would cause elements to appear rotated one-quarter
14151415
of a turn in the clockwise direction.
14161416

1417+
<dt> <code class=css>skew(&lt;x-angle&gt;[, &lt;angle&gt;])</code>
1418+
1419+
<dd> specifies a <a
1420+
href="http://www.w3.org/TR/SVG/coords.html#SkewXDefined">skew
1421+
transformation along the X axis</a> by the angle specified in the first
1422+
parameter, and a <a
1423+
href="http://www.w3.org/TR/SVG/coords.html#SkewYDefined">skew
1424+
transformation along the Y axis</a> by the angle specified in the second
1425+
parameter. If the second parameter is not provided, it has a value of 0.
1426+
14171427
<dt> <code class=css>skewX(&lt;angle&gt;)</code>
14181428

14191429
<dd> specifies a <a

css3-transforms/Transforms.src.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1262,6 +1262,14 @@ <h3 id="two-d-transform-functions">2D Transformation Functions</h3>
12621262
specifies a <a href="http://www.w3.org/TR/SVG/coords.html#RotationDefined">2D rotation</a> by the angle specified in the parameter about the origin of the element, as defined by the <em>transform-origin</em> property. For example, rotate(90deg) would cause elements to appear
12631263
rotated one-quarter of a turn in the clockwise direction.
12641264
</dd>
1265+
<dt>
1266+
<code class="css">skew(&lt;x-angle&gt;[, &lt;angle&gt;])</code>
1267+
</dt>
1268+
<dd>
1269+
specifies a <a href="http://www.w3.org/TR/SVG/coords.html#SkewXDefined">skew transformation along the X axis</a> by the angle
1270+
specified in the first parameter, and a <a href="http://www.w3.org/TR/SVG/coords.html#SkewYDefined">skew transformation along the Y
1271+
axis</a> by the angle specified in the second parameter. If the second parameter is not provided, it has a value of 0.
1272+
</dd>
12651273
<dt>
12661274
<code class="css">skewX(&lt;angle&gt;)</code>
12671275
</dt>

0 commit comments

Comments
 (0)