Skip to content

Commit b281eeb

Browse files
authored
[css-values-4] Allow {A} and ? multipliers to be stacked (#12521)
The Value Definition Syntax defines the list of multipliers that can be stacked. The syntax definition of `<cursor-image>` in css-ui-4 has started to use `<number>{2}?` but the `{A}?` stack wasn't explicitly allowed (and some CSS parsers do not support it yet). This update completes the list of multipliers that can be stacked with `{A}?` and `{A,B}?`.
1 parent 650aee4 commit b281eeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

css-values-4/Overview.bs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ Component Value Multipliers</h3>
335335
</ul>
336336

337337
The <css>+</css> and <css>#</css> multipliers may be stacked as ''+#'';
338-
similarly, the <css>#</css> and <css>?</css> multipliers may be stacked as ''#?''.
338+
similarly, the <css>#</css> and <css>?</css> multipliers, <css>{A}</css> and <css>?</css> multipliers, and <css>{A,B}</css> and <css>?</css> multipliers may be stacked as ''#?'', ''{A}?'', and ''{A,B}?'', respectively.
339339
These stacks each represent the later multiplier
340340
applied to the result of the earlier multiplier.
341341
(These same stacks can be represented using grouping,

0 commit comments

Comments
 (0)