summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/forms/image/width-and-height-of-detached-input.html
blob: 7ee1afe77bf1fc55d81650683cec41170b348a0c (plain)
1
2
3
4
5
6
7
8
9
10
<!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>