ch Unit in calc() Function in font-size Property in Chrome 88 or Edge 88

Chrome 88やEdge 88で、ch単位をcalc()内で使うと、想定より大きくなってしまうバグのテスト・ページです。Firefox 85やSafari 14では問題ありません。

font-size: 2ch

This text should be around 16px size.

.test .raw {
	font-size: 2ch;
}

2文字分なので、16px(初期サイズ)くらいになるはずで、その通りになる。

font-size: calc(2ch)

This text should be around 16px size.

.test .calc {
	font-size: calc(2ch);
}

特に何も計算していないため、同じく16px(初期サイズ)くらいになるはずだが、Chrome 88やEdge 88では倍の大きさになる。ex単位でも同様のバグが発生する。