chromium/third_party/blink/web_tests/css3/calc/img-size-expected.html

<style>
    img      { margin-top: 10px;}
    .control { width: 50%; }
    .pixels  { width: 100px; }
    .percent { width: 50%; }
    .both    { width: 100px; }
</style>

The images below must appear identical.
<div style="width:200px;">
    <img class="control" src="./resources/colorsquare.png">
    <img class="pixels"  src="./resources/colorsquare.png">
    <img class="percent" src="./resources/colorsquare.png">
    <img class="both"    src="./resources/colorsquare.png">
</div>