Currently Firefox and Chrome don't agree on how to calculate the width of a float element.https://issues.chromium.org/issues/41368104
```htmldata:text/html;charset=UTF-8,<!DOCTYPE html>
<div style="float:left; width:100px; height:100px; border:1px solid;">float</div>
<div style="overflow:hidden; width:-webkit-fill-available; background:cyan;">
Should this go below the float, or beside it?
</div>```