Skip to content

Commit b49fdcb

Browse files
committed
2011-08-02 dino@apple.com
- Another typo in matrix composition reported by Vincent Hardy.
1 parent a132823 commit b49fdcb

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

css3-2d-transforms/ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2011-08-02 dino@apple.com
2+
3+
- Another typo in matrix composition reported by Vincent Hardy.
4+
15
2011-07-24 dino@apple.com
26

37
- Boris feedback from 26 May 2011

css3-2d-transforms/Overview.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121

2222
<h1>CSS 2D Transforms</h1>
2323

24-
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 24 July 2011</h2>
24+
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 02 August 2011</h2>
2525

2626
<dl>
2727
<dt>This version:
2828

2929
<dd> <a
30-
href="http://www.w3.org/TR/2011/ED-css3-2d-transforms-20110724/">http://dev.w3.org/csswg/css3-2d-transforms/</a>
31-
<!--http://www.w3.org/TR/2011/WD-css3-2d-transforms-20110724-->
30+
href="http://www.w3.org/TR/2011/ED-css3-2d-transforms-20110802/">http://dev.w3.org/csswg/css3-2d-transforms/</a>
31+
<!--http://www.w3.org/TR/2011/WD-css3-2d-transforms-20110802-->
3232

3333
<dt>Latest version:
3434

@@ -814,7 +814,7 @@ <h3 id=unmatrix><span class=secno>7.2. </span>Unmatrix</h3>
814814
pdum3 = cross(row[1], row[2])
815815
if (dot(row[0], pdum3) &lt; 0)
816816
for (i = 0; i &lt; 3; i++) {
817-
scale[0] *= -1;
817+
scale[i] *= -1;
818818
row[i][0] *= -1
819819
row[i][1] *= -1
820820
row[i][2] *= -1
@@ -1292,7 +1292,7 @@ <h2 class=no-num id=property-index>Property index</h2>
12921292

12931293
<tbody>
12941294
<tr>
1295-
<td><a class=property href="#effects">transform</a>
1295+
<th><a class=property href="#effects">transform</a>
12961296

12971297
<td>none | &lt;transform-function&gt; [ &lt;transform-function&gt; ]*
12981298

@@ -1307,7 +1307,7 @@ <h2 class=no-num id=property-index>Property index</h2>
13071307
<td>visual
13081308

13091309
<tr>
1310-
<td><a class=property href="#transform-origin">transform-origin</a>
1310+
<th><a class=property href="#transform-origin">transform-origin</a>
13111311

13121312
<td>[ top | bottom ] | [ &lt;percentage> | &lt;length&gt; | left |
13131313
center | right ] [ &lt;percentage> | &lt;length&gt; | top | center |

css3-2d-transforms/Overview.src.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -748,7 +748,7 @@ <h3 id="unmatrix">Unmatrix</h3>
748748
pdum3 = cross(row[1], row[2])
749749
if (dot(row[0], pdum3) &lt; 0)
750750
for (i = 0; i &lt; 3; i++) {
751-
scale[0] *= -1;
751+
scale[i] *= -1;
752752
row[i][0] *= -1
753753
row[i][1] *= -1
754754
row[i][2] *= -1

0 commit comments

Comments
 (0)