blob: a68ca0431a5ce630f8faab33614f2e5d3de463fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
Check blur and focus events for multiple fields week 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=1 focus=1"
PASS successfullyParsed is true
TEST COMPLETE
|