Skip to content

Commit c3d32e0

Browse files
committed
Merge
2 parents 0c7fca9 + 03c6a9b commit c3d32e0

3 files changed

Lines changed: 58 additions & 14 deletions

File tree

css3-transforms/ChangeLog

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
2012-03-12 ayg@aryeh.name
2+
Fix resolved values of transform-origin and perspective-origin
3+
Fixes https://www.w3.org/Bugs/Public/show_bug.cgi?id=15433 and partially fixes https://www.w3.org/Bugs/Public/show_bug.cgi?id=15681.
4+
5+
2012-03-12 ayg@aryeh.name
6+
Hyperlink two CSS2.1 definitions
7+
8+
2012-03-07 ayg@aryeh.name
9+
Resolve ambiguity in transform-origin syntax.
10+
As resolved in bug: https://www.w3.org/Bugs/Public/show_bug.cgi?id=15432
11+
112
2012-03-06 simon.fraser@apple.com
213
Fix typo.
314

@@ -110,4 +121,4 @@
110121

111122
2012-01-27 simon.fraser@apple.com
112123
Style and formatting changes, since the default style is more readable.
113-
Removed the Changes section, since the autogenerated content instead links to a separate ChangeLog file (this file).
124+
Removed the Changes section, since the autogenerated content instead links to a separate ChangeLog file (this file).

css3-transforms/Overview.html

Lines changed: 25 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@
3636

3737
<h1>CSS Transforms</h1>
3838

39-
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 7 March 2012</h2>
39+
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 12 March 2012</h2>
4040

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

4444
<dd> <a
45-
href="http://www.w3.org/TR/2012/ED-css3-transforms-20120307/">http://dev.w3.org/csswg/css3-transforms/</a>
46-
<!--http://www.w3.org/TR/2012/WD-css3-transforms-20120307-->
45+
href="http://www.w3.org/TR/2012/ED-css3-transforms-20120312/">http://dev.w3.org/csswg/css3-transforms/</a>
46+
<!--http://www.w3.org/TR/2012/WD-css3-transforms-20120312-->
4747

4848
<dt>Latest version:
4949

@@ -432,11 +432,12 @@ <h2 id=definitions><span class=secno>4. </span>Definitions</h2>
432432
id=transformable-element>transformable element</dfn>
433433

434434
<dd>
435-
<p> A transformable element in the HTML namespace which is either a
436-
block-level or atomic inline-level element, or an element in the SVG
437-
namespace (see <a href="#SVG11"
438-
rel=biblioentry>[SVG11]<!--{{SVG11}}--></a>) which has the attributes
439-
&lsquo;<a href="#effects"><code class=css><code
435+
<p> A transformable element in the HTML namespace which is either a <a
436+
href="http://www.w3.org/TR/CSS2/visuren.html#block-level">block-level</a>
437+
or <a href="http://www.w3.org/TR/CSS2/visuren.html#x13">atomic
438+
inline-level element</a>, or an element in the SVG namespace (see <a
439+
href="#SVG11" rel=biblioentry>[SVG11]<!--{{SVG11}}--></a>) which has the
440+
attributes &lsquo;<a href="#effects"><code class=css><code
440441
class=property>transform</code></code></a>&rsquo;, &lsquo;<code
441442
class=property>patternTransform</code>&rsquo; or &lsquo;<code
442443
class=property>gradientTransform</code>&rsquo;.</p>
@@ -1576,7 +1577,14 @@ <h2 id=transform-origin-property><span class=secno>8. </span> The &lsquo;<a
15761577

15771578
<p>For SVG elements without an associated CSS layout box the
15781579
<var>&lt;length&gt;</var> values represent an offset from the point of
1579-
origin of the element's local coordinate space.</p>
1580+
origin of the element's local coordinate space.
1581+
1582+
<p> The <a
1583+
href="http://dvcs.w3.org/hg/cssom/raw-file/tip/Overview.html/#resolved-value">resolved
1584+
value</a> of &lsquo;<a href="#transform-origin"><code class=css><code
1585+
class=property>transform-origin</code></code></a>&rsquo; is the <a
1586+
href="http://www.w3.org/TR/CSS21/cascade.html#used-value">used value</a>
1587+
(i.e., percentages are resolved to absolute lengths).</p>
15801588
<!-- ======================================================================================================= -->
15811589

15821590
<h2 id=transform-style-property><span class=secno>9. </span> The &lsquo;<a
@@ -1793,7 +1801,14 @@ <h2 id=perspective-origin-property><span class=secno>11. </span> The
17931801
href="#perspective-origin"><code class=css><code
17941802
class=property>perspective-origin</code></code></a>&rsquo; properties are
17951803
used to compute the <a href="#TermPerspectiveMatrix"><i>perspective
1796-
matrix</i></a>, as described above.</p>
1804+
matrix</i></a>, as described above.
1805+
1806+
<p> The <a
1807+
href="http://dvcs.w3.org/hg/cssom/raw-file/tip/Overview.html/#resolved-value">resolved
1808+
value</a> of &lsquo;<a href="#perspective-origin"><code class=css><code
1809+
class=property>perspective-origin</code></code></a>&rsquo; is the <a
1810+
href="http://www.w3.org/TR/CSS21/cascade.html#used-value">used value</a>
1811+
(i.e., percentages are resolved to absolute lengths).</p>
17971812
<!-- ======================================================================================================= -->
17981813

17991814
<h2 id=backface-visibility-property><span class=secno>12. </span> The

css3-transforms/Transforms.src.html

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,12 @@ <h2 id="definitions">Definitions</h2>
195195
<dt id="TermTransformableElement"><dfn>transformable element</dfn></dt>
196196
<dd>
197197
<p>
198-
A transformable element in the HTML namespace which is either a block-level or atomic inline-level
199-
element, or an element in the SVG namespace (see [[SVG11]]) which has the attributes '<code class="property">transform</code>',
198+
A transformable element in the HTML namespace which is either a
199+
<a href="http://www.w3.org/TR/CSS2/visuren.html#block-level">block-level</a>
200+
or <a href="http://www.w3.org/TR/CSS2/visuren.html#x13">atomic
201+
inline-level element</a>, or an element in the SVG namespace
202+
(see [[SVG11]]) which has the attributes '<code
203+
class="property">transform</code>',
200204
'patternTransform' or 'gradientTransform'.
201205
</p>
202206
</dd>
@@ -1131,6 +1135,13 @@ <h2 id="transform-origin-property">
11311135
values represent an offset from the point of origin of the element's local coordinate space.
11321136
</p>
11331137

1138+
<p>
1139+
The <a href="http://dvcs.w3.org/hg/cssom/raw-file/tip/Overview.html/#resolved-value">resolved value</a>
1140+
of '<code class="property">transform-origin</code>' is the
1141+
<a href="http://www.w3.org/TR/CSS21/cascade.html#used-value">used value</a>
1142+
(i.e., percentages are resolved to absolute lengths).
1143+
</p>
1144+
11341145
<!-- ======================================================================================================= -->
11351146

11361147
<h2 id="transform-style-property">
@@ -1403,7 +1414,14 @@ <h2 id="perspective-origin-property">
14031414
The values of the '<code class="property">perspective</code>' and '<code class="property">perspective-origin</code>'
14041415
properties are used to compute the <a href="#TermPerspectiveMatrix"><i>perspective matrix</i></a>, as described above.
14051416
</p>
1406-
1417+
1418+
<p>
1419+
The <a href="http://dvcs.w3.org/hg/cssom/raw-file/tip/Overview.html/#resolved-value">resolved value</a>
1420+
of '<code class="property">perspective-origin</code>' is the
1421+
<a href="http://www.w3.org/TR/CSS21/cascade.html#used-value">used value</a>
1422+
(i.e., percentages are resolved to absolute lengths).
1423+
</p>
1424+
14071425
<!-- ======================================================================================================= -->
14081426

14091427
<h2 id="backface-visibility-property">

0 commit comments

Comments
 (0)