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
CSS Values and Units Level 4 introduces the mix() function. It's not clear to me reading the spec at what point clamping should be applied for this example:
Parse-time range-checking of values is not performed within math functions, and therefore out-of-range values do not cause the declaration to become invalid. However, the value resulting from an expression must be clamped to the range allowed in the target context.
I'm not sure what "resulting from an expression" means here. I think the above mix() value could resolve to either:
20px where we clamp the output of the calc() expression and mix between 40px and 0px,
0px where we only clamp the output of the entire mix() expression and mix between 40px and -80px, clamping the result -20px to 0px
Assuming that "resulting from an expression" refers to any math function then it would clearly be the first result since mix() is not a math function.
This is somewhat related to #8157 where I raised the issue of what would happen when interpolating between the same two values in the context of an animation.
The text was updated successfully, but these errors were encountered:
Yes, it's (1) in this case: each of mix()'s arguments are clamped to allowed range of the context (non-negative). By "expression" I really mean "top-level calculation" and should use that term (and linkify it) instead.
But an interp() function from #6697 that would basically be syntax sugar for calc() then would behave as (2).
Right, if we stayed purely within math functions the clamping wouldn't happen until the end.
CSS Values and Units Level 4 introduces the
mix()
function. It's not clear to me reading the spec at what point clamping should be applied for this example:The spec has this to say in the Range Checking section for calc():
I'm not sure what "resulting from an expression" means here. I think the above
mix()
value could resolve to either:20px
where we clamp the output of thecalc()
expression and mix between40px
and0px
,0px
where we only clamp the output of the entiremix()
expression and mix between40px
and-80px
, clamping the result-20px
to0px
Assuming that "resulting from an expression" refers to any math function then it would clearly be the first result since
mix()
is not a math function.This is somewhat related to #8157 where I raised the issue of what would happen when interpolating between the same two values in the context of an animation.
The text was updated successfully, but these errors were encountered: