blob: 391c803271b836d609575c9c949a51fa5a20cd6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
This tests onSelect for text fields.
Calling focus on text field
After focus: text field selection start: 0 end: 0
Calling setSelectionRange on text field
After setSelectionRange(3, 5): text field selection start: 3 end: 5
Double clicking to make selection for text field
onselect fired for text field
After double clicking: text field selection start: 6 end: 10
Calling blur on text field
After blur: text field selection start: 6 end: 10
Calling focus on text field
After focus: text field selection start: 6 end: 10
|