chromium/third_party/blink/web_tests/http/tests/svg/cached-image-sizing.html

<!DOCTYPE HTML>
<html>
<body>
Test for webkit.org/b/106733: This test passes if there is a green square (not rectangle) below:<br/>
<img src="http://127.0.0.1:8000/svg/resources/delayCachedLoad.php" width="200" height="200">
<script>

if (window.testRunner)
    testRunner.waitUntilDone();

window.onload = function(){
    if (location.hash == "") {
        location.hash = "#reloading";
        location.reload(true);
    } else if (location.hash == "#reloading") {
        location.hash = "#finished";
        if (window.testRunner)
            testRunner.notifyDone();
    }
}
</script>
</body>
</html>