Skip to content

Commit 437b0e9

Browse files
committed
Transform functions can be separated by optional whitespace.
1 parent 8a433eb commit 437b0e9

3 files changed

Lines changed: 13 additions & 13 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-16 dschulze@adobe.com
2+
Transform functions can be separated by optional whitespace. This matches behavior of all
3+
browsers on CSS Transforms as well as SVG Transforms.
4+
15
2012-03-16 dschulze@adobe.com
26
Rename transformation function to transform function to match general pattern.
37

css3-transforms/Overview.html

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1148,15 +1148,14 @@ <h3 id=svg-syntax><span class=secno>7.2. </span>Syntax of the SVG &lsquo;<a
11481148

11491149
<h4 id=svg-transform-list><span class=secno>7.2.1. </span>Transform List</h4>
11501150

1151-
<p> The value for the &lsquo;<a href="#effects"><code class=css><code
1152-
class=property>transform</code></code></a>&rsquo; attribute consists of a
1151+
<p> The value for the &lsquo;<a href="#effects"><code
1152+
class=property>transform</code></a>&rsquo; attribute consists of a
11531153
transform list with zero or more transform functions using <a
11541154
href="#svg-functional-notation">functional notation</a>. If the transform
11551155
list consists of more than one transform function, these functions are
1156-
separated by either a comma (‘<code class=css>,</code>’) with optional
1157-
whitespace characters before and after the comma, or by one or more
1158-
whitespace characters. The transform list can have optional whitespace
1159-
characters before and after the list.
1156+
separated by optional whitespace, an optional comma (‘<code
1157+
class=css>,</code>’) and optional whitespace. The transform list can
1158+
have optional whitespace characters before and after the list.
11601159

11611160
<h4 id=svg-functional-notation><span class=secno>7.2.2. </span>Functional
11621161
Notation</h4>
@@ -1947,8 +1946,7 @@ <h2 id=transform-functions><span class=secno>13. </span> The Transform
19471946
<p> The value of the <a href="#effects"><code
19481947
class=property>transform</code></a> property is a list of
19491948
<var>&lt;transform-functions&gt;</var> applied in the order provided. The
1950-
individual transform functions are separated by whitespace. The set of
1951-
allowed transform functions is given below. In this list the type
1949+
set of allowed transform functions is given below. In this list the type
19521950
<var>&lt;translation-value&gt;</var> is defined as a
19531951
<var>&lt;length&gt;</var> or <var>&lt;percentage&gt;</var> value, and the
19541952
<var>&lt;angle&gt;</var> type is defined by <a

css3-transforms/Transforms.src.html

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -810,11 +810,10 @@ <h3 id="svg-syntax">Syntax of the SVG 'transform' attribute</h3>
810810
<h4 id="svg-transform-list">Transform List</h4>
811811

812812
<p>
813-
The value for the '<code class="property">transform</code>' attribute consists of a transform list with zero or more transform functions
813+
The value for the 'transform' attribute consists of a transform list with zero or more transform functions
814814
using <a href="#svg-functional-notation">functional notation</a>. If the transform list consists of more than one transform function,
815-
these functions are separated by either a comma (‘<code class="css">,</code>’) with optional whitespace characters
816-
before and after the comma, or by one or more whitespace characters. The transform list can have
817-
optional whitespace characters before and after the list.
815+
these functions are separated by optional whitespace, an optional comma (‘<code class="css">,</code>’) and optional whitespace.
816+
The transform list can have optional whitespace characters before and after the list.
818817
</p>
819818

820819
<h4 id="svg-functional-notation">Functional Notation</h4>
@@ -1611,7 +1610,6 @@ <h2 id="transform-functions">
16111610
<p>
16121611
The value of the <code class="property">transform</code> property is a
16131612
list of <var>&lt;transform-functions&gt;</var> applied in the order provided. The
1614-
individual transform functions are separated by whitespace. The
16151613
set of allowed transform functions is given below. In this list the
16161614
type <var>&lt;translation-value&gt;</var> is defined as a <var>&lt;length&gt;</var> or
16171615
<var>&lt;percentage&gt;</var> value, and the <var>&lt;angle&gt;</var> type is defined by <a

0 commit comments

Comments
 (0)