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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/events/touch/document-create-touch-list-expected.txt

Issue 1990683002: [DevTools] Capture call stacks for deprecation console messages. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 years, 7 months 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 WARNING: 'TouchEvent.initTouchEvent' is deprecated and will be removed i n M53, around September 2016. Please use the TouchEvent constructor instead. See https://www.chromestatus.com/features/5730982598541312 for more details. 1 CONSOLE WARNING: line 20: 'TouchEvent.initTouchEvent' is deprecated and will be removed in M53, around September 2016. Please use the TouchEvent constructor ins tead. See https://www.chromestatus.com/features/5730982598541312 for more detail s.
2 This tests support for the document.createTouchList API. 2 This tests support for the document.createTouchList API.
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 "createTouchList" in document is true 7 PASS "createTouchList" in document is true
8 PASS touchList is non-null. 8 PASS touchList is non-null.
9 PASS touchList.length is 0 9 PASS touchList.length is 0
10 PASS touchList.item(0) is null 10 PASS touchList.item(0) is null
11 PASS touchList.item(1) is null 11 PASS touchList.item(1) is null
12 PASS touchList.item() threw exception TypeError: Failed to execute 'item' on 'To uchList': 1 argument required, but only 0 present.. 12 PASS touchList.item() threw exception TypeError: Failed to execute 'item' on 'To uchList': 1 argument required, but only 0 present..
13 PASS ts instanceof TouchEvent is true 13 PASS ts instanceof TouchEvent is true
14 PASS ts.touches instanceof TouchList is true 14 PASS ts.touches instanceof TouchList is true
15 PASS ts.touches.length is 2 15 PASS ts.touches.length is 2
16 PASS ts.touches[0] instanceof Touch is true 16 PASS ts.touches[0] instanceof Touch is true
17 PASS ts.touches[0].identifier is 12341 17 PASS ts.touches[0].identifier is 12341
18 PASS ts.touches[0].clientX is 60 18 PASS ts.touches[0].clientX is 60
19 PASS ts.touches[1].screenY is 120 19 PASS ts.touches[1].screenY is 120
20 PASS ts.ctrlKey is true 20 PASS ts.ctrlKey is true
21 PASS An exception was thrown: Failed to execute 'createTouchList' on 'Document': parameter 1 is not of type 'Touch'. 21 PASS An exception was thrown: Failed to execute 'createTouchList' on 'Document': parameter 1 is not of type 'Touch'.
22 PASS successfullyParsed is true 22 PASS successfullyParsed is true
23 23
24 TEST COMPLETE 24 TEST COMPLETE
25 PASS successfullyParsed is true 25 PASS successfullyParsed is true
26 26
27 TEST COMPLETE 27 TEST COMPLETE
28 28
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698