Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(567)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/events/touch/touch-event-cancelable-expected.txt

Issue 2536563003: Fix missing warning for canceling touchmove when in default not passive mode. (Closed)
Patch Set: Fix test Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 CONSOLE MESSAGE: line 16: Calling preventDefault on TouchEvent with cancelable=t rue 1 CONSOLE MESSAGE: line 32: Sending cancelable touchmove
2 CONSOLE MESSAGE: line 16: Calling preventDefault on TouchEvent with cancelable=f alse 2 CONSOLE MESSAGE: line 21: Calling preventDefault on TouchEvent with cancelable=t rue
3 CONSOLE WARNING: line 17: Ignored attempt to cancel a touchmove event with cance lable=false, for example because scrolling is in progress and cannot be interrup ted. 3 CONSOLE MESSAGE: line 39: Sending uncancelable touchmove
4 Test that touch events may or may not be marked cancelable. http://crbug.com/365 681 4 CONSOLE MESSAGE: line 21: Calling preventDefault on TouchEvent with cancelable=f alse
5 CONSOLE WARNING: line 22: Ignored attempt to cancel a touchmove event with cance lable=false, for example because scrolling is in progress and cannot be interrup ted.
6 CONSOLE MESSAGE: line 64: Sending uncancelable touchmove
7 CONSOLE WARNING: line 57: Ignored attempt to cancel a touchmove event with cance lable=false, for example because scrolling is in progress and cannot be interrup ted.
8 This is a testharness.js-based test.
9 PASS Test that touch events may or may not be marked cancelable. http://crbug.co m/365681
10 PASS Test that warning occurs in default mode
11 Harness: the test ran to completion.
5 12
6 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
7
8
9 Sending cancelable touchmove
10 PASS gotTouchMove is false
11 PASS touchEvent.defaultPrevented is false
12 PASS gotTouchMove is true
13 PASS touchEvent.cancelable is true
14 PASS touchEvent.defaultPrevented is true
15
16 Sending uncancelable touchmove
17 PASS gotTouchMove is false
18 PASS touchEvent.defaultPrevented is false
19 PASS gotTouchMove is true
20 PASS touchEvent.cancelable is false
21 PASS touchEvent.defaultPrevented is false
22 PASS successfullyParsed is true
23
24 TEST COMPLETE
25
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698