OLD | NEW |
1 Test for dragging operations of <input type=range> when readonly or disabled are
toggled. | 1 Test for dragging operations of <input type=range> when readonly or disabled are
toggled. |
2 | 2 |
3 Tests for range dragging while it toggles to be readonly. | 3 Tests for range dragging while it toggles to be readonly. |
4 readOnly=false, disabled=false | 4 readOnly=false, disabled=false |
5 PASS input.value is "100" | 5 PASS input.value is "100" |
6 PASS changeEventCounter is >= lastChangeEventCounter + 1 | 6 PASS changeEventCounter is >= lastChangeEventCounter |
7 PASS input.value is "0" | 7 PASS input.value is "0" |
8 PASS changeEventCounter is >= lastChangeEventCounter + 1 | 8 PASS changeEventCounter is >= lastChangeEventCounter + 1 |
9 readOnly=true | 9 readOnly=true |
10 PASS input.value is "0" | 10 PASS input.value is "0" |
11 PASS lastChangeEventCounter is changeEventCounter | 11 PASS lastChangeEventCounter is changeEventCounter |
12 | 12 |
13 Tests for range dragging while it toggles to be disabled. | 13 Tests for range dragging while it toggles to be disabled. |
14 readOnly=false, disabled=false | 14 readOnly=false, disabled=false |
15 PASS input.value is "100" | 15 PASS input.value is "100" |
16 PASS changeEventCounter is >= lastChangeEventCounter + 1 | 16 PASS changeEventCounter is >= lastChangeEventCounter |
17 PASS input.value is "0" | 17 PASS input.value is "0" |
18 PASS changeEventCounter is >= lastChangeEventCounter + 1 | 18 PASS changeEventCounter is >= lastChangeEventCounter + 1 |
19 disabled=true | 19 disabled=true |
20 PASS input.value is "0" | 20 PASS input.value is "0" |
21 PASS lastChangeEventCounter is changeEventCounter | 21 PASS lastChangeEventCounter is changeEventCounter |
22 | 22 |
23 PASS successfullyParsed is true | 23 PASS successfullyParsed is true |
24 | 24 |
25 TEST COMPLETE | 25 TEST COMPLETE |
26 | 26 |
OLD | NEW |