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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/events/wheel/wheelevent-constructor-expected.txt

Issue 2261173005: wheel layout tests moved to fast/events/wheel folder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 Tests the constructor of the standard wheel event 1 Tests the constructor of the standard wheel event
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 PASS testEvent = new WheelEvent('wheel') did not throw exception. 6 PASS testEvent = new WheelEvent('wheel') did not throw exception.
7 PASS testEvent.__proto__ is WheelEvent.prototype 7 PASS testEvent.__proto__ is WheelEvent.prototype
8 PASS testEvent.deltaX is 0 8 PASS testEvent.deltaX is 0
9 PASS testEvent.deltaY is 0 9 PASS testEvent.deltaY is 0
10 PASS testEvent.deltaZ is 0 10 PASS testEvent.deltaZ is 0
11 PASS testEvent.deltaMode is WheelEvent.DOM_DELTA_PIXEL 11 PASS testEvent.deltaMode is WheelEvent.DOM_DELTA_PIXEL
12 PASS testEvent = new WheelEvent('wheel', { deltaX: 10.2, deltaY: 20.3, deltaZ: 3 0.4, deltaMode: WheelEvent.DOM_DELTA_PAGE }) did not throw exception. 12 PASS testEvent = new WheelEvent('wheel', { deltaX: 10.2, deltaY: 20.3, deltaZ: 3 0.4, deltaMode: WheelEvent.DOM_DELTA_PAGE }) did not throw exception.
13 PASS testEvent.__proto__ is WheelEvent.prototype 13 PASS testEvent.__proto__ is WheelEvent.prototype
14 PASS testEvent.deltaX is 10.2 14 PASS testEvent.deltaX is 10.2
15 PASS testEvent.deltaY is 20.3 15 PASS testEvent.deltaY is 20.3
16 PASS testEvent.deltaZ is 30.4 16 PASS testEvent.deltaZ is 30.4
17 PASS testEvent.deltaMode is WheelEvent.DOM_DELTA_PAGE 17 PASS testEvent.deltaMode is WheelEvent.DOM_DELTA_PAGE
18 PASS successfullyParsed is true 18 PASS successfullyParsed is true
19 19
20 TEST COMPLETE 20 TEST COMPLETE
21 21
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698