chromium/third_party/blink/web_tests/fast/css/computed-image-width-with-percent-height.html

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
    <style>
        img { height:100%; }
    </style>
</head>
<body>
    The square below should be 25px by 25px.
    <!-- https://bugs.webkit.org/show_bug.cgi?id=28035 -->
    <!-- In strict mode, an image with height set to 100% should expand to its instrinsic height and width. -->
    <br>
    <img src="resources/greenbox.png">
</body>
</html>