chromium/third_party/blink/web_tests/fast/forms/image/input-width-height-attributes-without-renderer-not-loaded-image.html

<html>
<head>
<script src="../../../resources/js-test.js"></script>
<script>
jsTestIsAsync = true;
</script>
</head>
<body>
<input type="image" id="imageSlow" src="../resources/image-slow.pl" style="display:none">
<div id="console"></div>
<script language="JavaScript">
    var e = document.getElementById("imageSlow");
    shouldBe('e.width', '0');
    shouldBe('e.height', '0');
    finishJSTest();
</script>
</body>
</html>