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

<html>
<head>
<head>
<script src="../../../resources/js-test.js"></script>
<script>
jsTestIsAsync = true;
function test()
{
    inputElement = document.getElementById("inputElement");
    shouldBe('inputElement.width', '50');
    shouldBe('inputElement.height', '50');
    finishJSTest();

}
</script>
</head>
<body onload="test()">
<input id="inputElement" type="image" width="50" height="50" style="display:none">
</body>
</html>