Skip to content

Commit e410136

Browse files
committed
Clarify multiplication order
1 parent 4d78619 commit e410136

3 files changed

Lines changed: 11 additions & 8 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-11-05 dschulze@adobe.com
2+
Clarify multiplication order.
3+
14
2012-10-26 dschulze@adobe.com
25
Percentage values on transform properties are relative to the bounding box of the referencing element on resources.
36
https://www.w3.org/Bugs/Public/show_bug.cgi?id=19638

css3-transforms/Overview.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
rel=dcterms.rights>
1313
<meta content="CSS Transforms" name=dcterms.title>
1414
<meta content=text name=dcterms.type>
15-
<meta content=2012-10-26 name=dcterms.issued>
15+
<meta content=2012-11-05 name=dcterms.issued>
1616
<meta content="http://dev.w3.org/csswg/css3-transforms/"
1717
name=dcterms.creator>
1818
<meta content=W3C name=dcterms.publisher>
19-
<meta content="http://www.w3.org/TR/2012/ED-css3-transforms-20121026/"
19+
<meta content="http://www.w3.org/TR/2012/ED-css3-transforms-20121105/"
2020
name=dcterms.identifier>
2121
<link href="../default.css" rel=stylesheet type="text/css">
2222
<script defer=defer
@@ -37,15 +37,15 @@
3737

3838
<h1>CSS Transforms</h1>
3939

40-
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 26 October
40+
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 5 November
4141
2012</h2>
4242

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

4646
<dd> <a
47-
href="http://www.w3.org/TR/2012/ED-css3-transforms-20121026/">http://dev.w3.org/csswg/css3-transforms/</a>
48-
<!--http://www.w3.org/TR/2012/WD-css3-transforms-20121026/-->
47+
href="http://www.w3.org/TR/2012/ED-css3-transforms-20121105/">http://dev.w3.org/csswg/css3-transforms/</a>
48+
<!--http://www.w3.org/TR/2012/WD-css3-transforms-20121105/-->
4949

5050
<dt>Latest version:
5151

@@ -667,8 +667,8 @@ <h2 id=transform-rendering><span class=secno>6. </span>The Transform
667667
class=property>transform-origin</code></a>
668668

669669
<li>Multiply by each of the transform functions in ‘<a
670-
href="#effects"><code class=property>transform</code></a>’ property in
671-
turn
670+
href="#effects"><code class=property>transform</code></a>’ property
671+
from left to right
672672

673673
<li>Translate by the negated computed X, Y and Z values of ‘<a
674674
href="#transform-origin"><code

css3-transforms/Transforms.src.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ <h2 id="transform-rendering">The Transform Rendering Model</h2>
368368
<ol>
369369
<li>Start with the identity matrix.</li>
370370
<li>Translate by the computed X, Y and Z values of 'transform-origin'</li>
371-
<li>Multiply by each of the transform functions in 'transform' property in turn</li>
371+
<li>Multiply by each of the transform functions in 'transform' property from left to right</li>
372372
<li>Translate by the negated computed X, Y and Z values of 'transform-origin'</li>
373373
</ol>
374374

0 commit comments

Comments
 (0)