Skip to content

[css-values-5] Typo #12305

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 10, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 23 additions & 13 deletions css-values-5/Overview.bs
Original file line number Diff line number Diff line change
Expand Up @@ -987,7 +987,7 @@ Interpolation Mapping Notations: the *-interpolate() family
The [=functional notations=] follow the syntactic pattern:

*interpolate() = *interpolate( progress && global-options?,
*interpolate() = *interpolate( [ progress && global-options? ],
stop, [ between-options? , stop ]# )

Expand Down Expand Up @@ -1027,10 +1027,12 @@ Global Syntax of the *-interpolate() family

interpolate-function() = interpolate-function(
<> && [ by <> ]?
&& <>? && <>?,
[
<> && [ by <> ]?
&& <>? && <>?
] ,
<>{1,2} : <> ,
[ [ <> || <> , ]? <>{1,2} : <> ]*
[ [ <> || <> ]? , <>{1,2} : <> ]#?
)

Expand Down Expand Up @@ -1263,8 +1265,10 @@ Interpolated Numeric and Dimensional Values: the ''calc-interpolate()'' notation

<> = calc-interpolate(
<> && [ by <> ]?
&& <>?,
[
<> && [ by <> ]?
&& <>?
] ,
<>{1,2} : <> ,
[ <>? , <>{1,2} : <> ]# )
Expand All @@ -1274,7 +1278,7 @@ Interpolated Numeric and Dimensional Values: the ''calc-interpolate()'' notation
but must have a [=consistent type=]
or else the function is invalid.
The result's type will be the [=consistent type=],
[=made consistent=] with the type of the <> value.
[=made consistent=] with the type of the <-source>> value.

Interpolated Color Values: the ''color-interpolate()'' notation
Expand All @@ -1285,8 +1289,10 @@ Interpolated Color Values: the ''color-interpolate()'' notation

<> = color-interpolate(
<> && [ by <> ]?
&& <>? && <>?,
[
<> && [ by <> ]?
&& <>? && <>?
] ,
<>{1,2} : <>,
[ [ <> || <> ],
<>{1,2} : <> ]# )
Expand All @@ -1301,8 +1307,10 @@ Interpolated Transform Values: the ''transform-interpolate()'' notation

<> = transform-interpolate(
<> && [ by <> ]?
&& <>?,
[
<> && [ by <> ]?
&& <>?
],
<>{1,2} : <>,
[ <>?, <>{1,2} : <> ]# )
Expand All @@ -1318,8 +1326,10 @@ Interpolated Property Values: the ''interpolate()'' notation

<> = interpolate(
<> && [ by <> ]?
&& <>?,
[
<> && [ by <> ]?
&& <>?
] ,
<>{1,2} : <>,
[ <>?, <>{1,2} : <> ]# ) |
interpolate( <> && [ by <> ]?
Expand Down