tizen beta release
[framework/web/webkit-efl.git] / LayoutTests / fast / forms / script-tests / input-maxlength-unsupported.js
1 description('A test for maxlength attribute of an input element with non-text type');
2
3 var input = document.createElement('input');
4 input.maxLength = 2;
5 input.type = 'number';
6 document.body.appendChild(input);
7 input.focus();
8 document.execCommand('insertText', false, '1234');
9 shouldBe('input.value', '"1234"');
10
11 input.parentNode.removeChild(input);