blob: 7ee1afe77bf1fc55d81650683cec41170b348a0c [file] [log] [blame]
<!DOCTYPE html>
<script src="../../../resources/js-test.js"></script>
<script>
description('Width and height properties of a detached input element should return 0.');
var input = document.createElement('input');
input.type = 'image';
shouldBe('input.width', '0');
shouldBe('input.height', '0');
</script>