Re: [css-values] Rounding a real number to an integer

On 12/15/18 6:46 PM, Gérard Talbot wrote:
> Le 2018-12-15 19:46, Gérard Talbot a écrit :
>> Hello,
>>
>> "
>> (...) interpolation happens in the real number space as for <number>s,
>> and the result is converted to an <integer> by rounding to the nearest
>> integer, with *_values halfway between adjacent integers rounded
>> towards positive infinity_*.
>> "
>> CSS4 Values, section 5.1.1. Combination of <integer>
>> https://www.w3.org/TR/css-values-4/#combine-integers
>>
>> So
>>
>> 'z-index: -1.5'
>> should be converted to 'z-index: -1' and not to 'z-index: -2'
>> while
>> 'z-index: 1.5'
>> should be converted to 'z-index: 2'.
> 
> Oops.. I meant
> 
> 'z-index: calc(-1.5)'
> should compute to 'z-index: -1' and not to 'z-index: -2'
> while
> 'z-index: calc(1.5)'
> should compute to 'z-index: 2'.
> 
>>
>> Is my interpretation of the spec correct?

Afaict it is correct. If that's not what implementations do,
though, let us know as we may need to adjust the spec. :)

~fantasai

Received on Wednesday, 19 December 2018 00:58:29 UTC