File tree Expand file tree Collapse file tree 2 files changed +343
-289
lines changed Expand file tree Collapse file tree 2 files changed +343
-289
lines changed Original file line number Diff line number Diff line change @@ -140,6 +140,14 @@ Component value combinators</h3>
140
140
[ a b ] | [ c || [ d && [ e f ] ]]
141
141
</pre>
142
142
143
+ For re-orderable combinators (||, &&),
144
+ ordering of the grammar does not matter:
145
+ components in the same grouping may be interleaved in any order.
146
+ Thus, the following lines are equivalent:
147
+ <pre>
148
+ <!---->a || b || c
149
+ <!---->b || a || c</pre>
150
+
143
151
<h3 id="component-multipliers">
144
152
Component value multipliers</h3>
145
153
@@ -1662,6 +1670,7 @@ Changes</h2>
1662
1670
<li> Added notation for restricting the length of comma-separated lists
1663
1671
specified with the ''#'' notation.
1664
1672
<li> Clarified handling of ''toggle()'' when used in shorthand declarations.
1673
+ <li> Clarified that stringing together re-orderable combinations allows interleaving.
1665
1674
<li> Changed syntax references from the 2.1 grammar to the Syntax spec.
1666
1675
</ul>
1667
1676
You can’t perform that action at this time.
0 commit comments