You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<li>An asterisk (*) indicates that the preceding type, word, or
213
-
group occurs zero or more times.
216
+
group occurs zero or more times.
214
217
215
218
<li>A plus (+) indicates that the preceding type, word, or group
216
-
occurs one or more times.
219
+
occurs one or more times.
217
220
218
221
<li>A question mark (?) indicates that the preceding type, word, or
219
-
group is optional.
222
+
group is optional (occurs zero or one times).
223
+
224
+
<li>A single number in curly braces ({<var>A</var>})
225
+
indicates that the preceding type, word, or group occurs <var>A</var> times.
220
226
221
-
<li>A pair of numbers in curly braces ({<var>A</var>,<var>B</var>})
222
-
indicates that the preceding type, word, or group occurs at least
223
-
<var>A</var> and at most <var>B</var> times.
227
+
<li>A comma-separated pair of numbers in curly braces ({<var>A</var>,<var>B</var>})
228
+
indicates that the preceding type, word, or group occurs at least
229
+
<var>A</var> and at most <var>B</var> times.
230
+
The <var>B</var> may be omitted ({<var>A</var>,})
231
+
to indicate that there must be at least <var>A</var> repetitions,
232
+
with no upper bound on the number of repetitions.
224
233
225
234
<li>A hash mark (#) indicates that the preceding type, word, or
226
-
group occurs one or more times, separated by comma tokens.
235
+
group occurs one or more times, separated by comma tokens.
236
+
It may optionally be followed by the curly brace forms, above,
237
+
to indicate precisely how many times the repetition occurs.
227
238
</ul>
228
239
229
-
<!--
230
-
<p>
231
-
White space is allowed, but optional, between repetitions
232
-
and around the comma separator of ''#''-multiplied lists.
233
-
-->
234
-
235
240
<p>For repeated component values (indicated by ''*'', ''+'', or ''#''), UAs must support at least 20 repetitions of the component. If a property value contains more than the supported number of repetitions, the declaration must be ignored as if it were invalid.</p>
0 commit comments