Re: [csswg-drafts] [css-color-4] HWB normalization under-specified? (#9228)

[This is the test](https://codepen.io/svgeesus/pen/poqJrbj?editors=0011) 

```js
let test = document.createElement("div");
test.style.color = "hwb(90 calc(30%) 70%)";
console.log(test.style.color);
test.style.color = "hwb(90 calc(30% * 2) calc(70% * 2)";
console.log(test.style.color);
```

and in Chrome Canary Version 118.0.5977.0 (Official Build) canary (64-bit) I am getting 77 on both subtests, which is correct.

In what version of Chrome are you getting 96? Maybe an older version and a bug has since been fixed.

-- 
GitHub Notification of comment by svgeesus
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/9228#issuecomment-1697363643 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Tuesday, 29 August 2023 12:38:00 UTC