Skip to content

Commit f3b833e

Browse files
committed
Fix computed values of perspective and perspective-origin
Fixes https://www.w3.org/Bugs/Public/show_bug.cgi?id=15681.
1 parent c3d32e0 commit f3b833e

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

css3-transforms/ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2012-03-12 ayg@aryeh.name
2+
Fix computed values of perspective and perspective-origin
3+
Fixes https://www.w3.org/Bugs/Public/show_bug.cgi?id=15681.
4+
15
2012-03-12 ayg@aryeh.name
26
Fix resolved values of transform-origin and perspective-origin
37
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.

css3-transforms/Overview.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1717,7 +1717,7 @@ <h2 id=perspective-property><span class=secno>10. </span> The &lsquo;<a
17171717
<tr>
17181718
<td> <em>Computed value:</em>
17191719

1720-
<td> Same as specified value.
1720+
<td> Absolute length or "none".
17211721
</table>
17221722

17231723
<p> If the value is &lsquo;<code class=css><code
@@ -1793,7 +1793,7 @@ <h2 id=perspective-origin-property><span class=secno>11. </span> The
17931793
<tr>
17941794
<td> <em>Computed value:</em>
17951795

1796-
<td> Same as specified value.
1796+
<td> For &lt;length&gt; the absolute value, otherwise a percentage.
17971797
</table>
17981798

17991799
<p> The values of the &lsquo;<a href="#perspective"><code class=css><code

css3-transforms/Transforms.src.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1309,7 +1309,7 @@ <h2 id="perspective-property">
13091309
<em>Computed value:</em>
13101310
</td>
13111311
<td>
1312-
Same as specified value.
1312+
Absolute length or "none".
13131313
</td>
13141314
</tr>
13151315
</tbody>
@@ -1405,7 +1405,8 @@ <h2 id="perspective-origin-property">
14051405
<em>Computed value:</em>
14061406
</td>
14071407
<td>
1408-
Same as specified value.
1408+
For &lt;length&gt; the absolute value, otherwise a
1409+
percentage.
14091410
</td>
14101411
</tr>
14111412
</tbody>

0 commit comments

Comments
 (0)