4 <script src="../../js/resources/js-test-pre.js"></script>
7 <p id="description"></p>
8 <div id="console"></div>
10 description('This test aims to check for rangeOverflow flag with time input fields');
12 var input = document.createElement('input');
14 function checkOverflow(value, max, disabled)
18 input.disabled = !!disabled;
19 var overflow = input.validity.rangeOverflow;
20 var resultText = 'The value "' + input.value + '" ' +
21 (overflow ? 'overflows' : 'doesn\'t overflow') +
22 ' the maximum value "' + input.max + '"' + (disabled ? ' when disabled.' : '.');
24 testPassed(resultText);
26 testFailed(resultText);
29 function checkNotOverflow(value, max, disabled)
33 input.disabled = !!disabled;
34 var overflow = input.validity.rangeOverflow;
35 var resultText = 'The value "' + input.value + '" ' +
36 (overflow ? 'overflows' : 'doesn\'t overflow') +
37 ' the maximum value "' + input.max + '"' + (disabled ? ' when disabled.' : '.');
39 testFailed(resultText);
41 testPassed(resultText);
47 checkNotOverflow('13:16', null);
48 checkNotOverflow('13:16', '');
49 checkNotOverflow('13:16', 'foo');
50 checkNotOverflow('13:16', '13:16');
51 checkNotOverflow('13:16', '13:17');
52 checkNotOverflow('13:16', '14:15');
53 checkNotOverflow('foo', '13:16');
56 checkOverflow('13:16', '13:15');
57 checkOverflow('23:59:59.999', '13:16');
58 input.min = '14:00'; // value < min && value > max
59 checkOverflow('13:16', '12:00');
62 checkNotOverflow('23:59:59.999', '13:16', true);
64 <script src="../../js/resources/js-test-post.js"></script>