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

Unified Diff: third_party/WebKit/LayoutTests/fast/events/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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/events/wheelevent-constructor-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/events/wheelevent-constructor-expected.txt b/third_party/WebKit/LayoutTests/fast/events/wheelevent-constructor-expected.txt
deleted file mode 100644
index 29a6f4a3b0a3d8d42ce716554c0bacc0ced72b0e..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/events/wheelevent-constructor-expected.txt
+++ /dev/null
@@ -1,21 +0,0 @@
-Tests the constructor of the standard wheel event
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-PASS testEvent = new WheelEvent('wheel') did not throw exception.
-PASS testEvent.__proto__ is WheelEvent.prototype
-PASS testEvent.deltaX is 0
-PASS testEvent.deltaY is 0
-PASS testEvent.deltaZ is 0
-PASS testEvent.deltaMode is WheelEvent.DOM_DELTA_PIXEL
-PASS testEvent = new WheelEvent('wheel', { deltaX: 10.2, deltaY: 20.3, deltaZ: 30.4, deltaMode: WheelEvent.DOM_DELTA_PAGE }) did not throw exception.
-PASS testEvent.__proto__ is WheelEvent.prototype
-PASS testEvent.deltaX is 10.2
-PASS testEvent.deltaY is 20.3
-PASS testEvent.deltaZ is 30.4
-PASS testEvent.deltaMode is WheelEvent.DOM_DELTA_PAGE
-PASS successfullyParsed is true
-
-TEST COMPLETE
-

Powered by Google App Engine
This is Rietveld 408576698