.foo {
width: calc(100% / 3 * 3);
height: calc(calc(100% / 3) * 3);
}
Expected output:
.foo {
width: 100%;
height: 100%;
}
Actual output:
.foo {
width: 100%;
height: 99.99999%;
}
reduce-css-calc is also affected
Note that it works in Firefox and Chrome:
