OLD | NEW |
1 | 1 |
2 This tests that an input text field can be properly scrolled with touch gestures | 2 This tests that an input text field can be properly scrolled with touch gestures |
3 | 3 |
4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
5 | 5 |
6 | 6 |
| 7 PASS successfullyParsed is true |
| 8 |
| 9 TEST COMPLETE |
7 ===Testing fling behavior=== | 10 ===Testing fling behavior=== |
8 PASS box.scrollLeft is 0 | 11 PASS box.scrollLeft is 0 |
9 PASS container.scrollLeft is 0 | 12 PASS container.scrollLeft is 0 |
10 Flinging input text should scroll text by the specified amount | 13 Flinging input text should scroll text by the specified amount |
11 PASS box.scrollLeft is 40 | 14 PASS box.scrollLeft is 40 |
12 PASS container.scrollLeft is 0 | 15 PASS container.scrollLeft is 0 |
13 Flinging input text past the scrollable width shouldn't scroll containing div | 16 Flinging input text past the scrollable width shouldn't scroll containing div |
14 PASS box.scrollLeft is fullyScrolled | 17 PASS box.scrollLeft is fullyScrolled |
15 PASS container.scrollLeft is 0 | 18 PASS container.scrollLeft is 0 |
16 Flinging fully scrolled input text should fling containing div | 19 Flinging fully scrolled input text should fling containing div |
(...skipping 19 matching lines...) Expand all Loading... |
36 Vertically flinging input text should scroll the containing div the specified am
ount | 39 Vertically flinging input text should scroll the containing div the specified am
ount |
37 PASS box.scrollTop is 0 | 40 PASS box.scrollTop is 0 |
38 PASS container.scrollTop is 60 | 41 PASS container.scrollTop is 60 |
39 ===Testing non-overflow scroll behavior=== | 42 ===Testing non-overflow scroll behavior=== |
40 Input box without overflow should not scroll | 43 Input box without overflow should not scroll |
41 PASS box.scrollLeft is 0 | 44 PASS box.scrollLeft is 0 |
42 PASS container.scrollLeft is 0 | 45 PASS container.scrollLeft is 0 |
43 PASS box.clientWidth is >= box.scrollWidth | 46 PASS box.clientWidth is >= box.scrollWidth |
44 PASS box.scrollLeft is 0 | 47 PASS box.scrollLeft is 0 |
45 PASS container.scrollLeft is 60 | 48 PASS container.scrollLeft is 60 |
46 PASS successfullyParsed is true | |
47 | 49 |
48 TEST COMPLETE | |
49 | |
OLD | NEW |