blob: 5c2392187c5ee0e60361bd141eec0c6fa51f211f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
Check blur and focus events for multiple fields time input UI
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
focus() and blur()
PASS testInput.focus(); state() is "blur=0 focus=1"
PASS testInput.blur(); state() is "blur=1 focus=1"
focus and Tab key to blur
PASS keyDown(" "); state() is "blur=0 focus=1"
PASS keyDown(" "); state() is "blur=0 focus=1"
PASS keyDown(" "); state() is "blur=0 focus=1"
PASS keyDown(" "); state() is "blur=1 focus=1"
PASS successfullyParsed is true
TEST COMPLETE
|