Emilio Cobos Álvarez

Results 777 comments of Emilio Cobos Álvarez

@svgeesus The specified value shouldn't resolve colors. `color-mix(blue, red)` should be `color-mix(blue, red)`, not `color-mix(rgb(0, 0, 255), rgb(255, 0, 0))`.

Yeah, Chris's comment is right. The only explicitly preserved thing for srgb colors is the keyword. But it needs to be recursive (e.g., `color-mix(red, blue, ..)` should use `red` /...

That's what I'm saying right? Everything except the keyword is _not_ explicitly preserved :)

I think this is easy to fix, and we may want to just not compress shorthands if we'd need to jump over a declaration with the same logical group in...

There's also the case of the property containing both the logical and the physical longhands (i.e., `all`)... That one's fun, since it's not defined in which order we expand the...

Table rows clearly have to have boxes, since they have geometry. In all browsers getBoundingClientRect etc works on them.

Another interesting test-case is something not involving comments like: ``` document.body.textContent = document.body.style.getPropertyValue("color"); ``` Chrome serializes `1000 var(--foo)` while Firefox serializes `1e3 var(--foo)`.

> Then the trailing whitespace should be removed when serializing color:__var(__--blue__)__, isn't it? The output in Firefox is color: var(__--blue__)__. Yeah, I think that is a Gecko bug, mind filing...