Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 | |
| 2 This tests that an input text field can be properly scrolled with touch gestures | |
|
tdanderson
2013/08/08 20:01:16
Can you do a quick sanity check that everything wo
| |
| 3 | |
| 4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". | |
| 5 | |
| 6 | |
| 7 Flinging input text should scroll the text | |
|
tdanderson
2013/08/08 20:01:16
On lines 7 and 16 make it clear that you're not fl
bokan
2013/08/12 16:19:29
Done
| |
| 8 PASS box.scrollLeft is 40 | |
| 9 PASS container.scrollLeft is 0 | |
| 10 Flinging input text past the scrollable width shouldn't scroll containing div | |
| 11 PASS box.scrollLeft is box.scrollWidth - box.clientWidth | |
|
tdanderson
2013/08/08 20:01:16
In the expected results it is better report the ac
bokan
2013/08/12 16:19:29
Done
| |
| 12 PASS container.scrollLeft is 0 | |
| 13 Flinging fully scrolled input text should fling containing div | |
| 14 PASS box.scrollLeft is box.scrollWidth - box.clientWidth | |
| 15 PASS container.scrollLeft is 60 | |
| 16 Gesture scrolling input text a bit should scroll the text | |
|
tdanderson
2013/08/08 20:01:16
I would add a sanity check between the end of the
bokan
2013/08/12 16:19:29
Done.
| |
| 17 PASS box.scrollLeft is 60 | |
| 18 PASS container.scrollLeft is 0 | |
| 19 Gesture scrolling input text past scroll width should scroll container div | |
| 20 PASS box.scrollLeft is box.scrollWidth - box.clientWidth | |
| 21 PASS container.scrollLeft is 50 | |
| 22 | |
| OLD | NEW |