chromium/third_party/blink/web_tests/paint/invalidation/svg/set-img-height.html

<!doctype html>
<head>
    <script src="../resources/text-based-repaint.js" type="text/javascript"></script>
    <style>
    #scaleMe {
        width:100px;
        height:200px;
        background: yellow;
    }
    </style>
</head>
<body onload="runRepaintAndPixelTest()">
<script>
window.outputRepaintRects = false;
function repaintTest() {
    document.getElementById("scaleMe").style.height="100px";
}
</script>
<div>
    <img id="scaleMe" src="../../../svg/as-image/resources/circle-200px-none.svg">
</div>
</body>