blob: eb8057a36768c7ec53901a2c52051fccac5a4080 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
Test for wheel operations for <input type=time>
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
Initial value is 07:00. We'll wheel up by 1:
PASS input.value is "08:00"
Wheel up by 100:
PASS input.value is "09:00"
Wheel down by 1:
PASS input.value is "08:00"
Wheel down by 256:
PASS input.value is "07:00"
Disabled input element:
PASS input.value is "07:00"
Read-only input element:
PASS input.value is "07:00"
No focus:
PASS input.value is "07:00"
PASS successfullyParsed is true
TEST COMPLETE
|