This works as expected:
document.getElementById('blah').style.left = '200px';
However, this refuses to work for reasons unknown to me:
document.getElementById('blah').style.left = 'calc(225px-25px)';
No errors in the console. The property simply seems not to be set.
Why? And how to make this work?