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

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

Issue 2406263003: Make PointerEvent coordinates fractional for touch (Closed)
Patch Set: Rebased. Created 4 years, 1 month 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 This tests the constructor for the WheelEvent DOM class. 1 This tests the constructor for the WheelEvent DOM class.
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 new WheelEvent('eventType').bubbles is false 6 PASS new WheelEvent('eventType').bubbles is false
7 PASS new WheelEvent('eventType').cancelable is false 7 PASS new WheelEvent('eventType').cancelable is false
8 PASS new WheelEvent('eventType').view is null 8 PASS new WheelEvent('eventType').view is null
9 PASS new WheelEvent('eventType').detail is 0 9 PASS new WheelEvent('eventType').detail is 0
10 PASS new WheelEvent('eventType').screenX is 0 10 PASS new WheelEvent('eventType').screenX is 0
(...skipping 24 matching lines...) Expand all
35 PASS new WheelEvent('eventType', { view: '' }).view threw exception TypeError: F ailed to construct 'WheelEvent': member view is not of type Window.. 35 PASS new WheelEvent('eventType', { view: '' }).view threw exception TypeError: F ailed to construct 'WheelEvent': member view is not of type Window..
36 PASS new WheelEvent('eventType', { view: 'chocolate' }).view threw exception Typ eError: Failed to construct 'WheelEvent': member view is not of type Window.. 36 PASS new WheelEvent('eventType', { view: 'chocolate' }).view threw exception Typ eError: Failed to construct 'WheelEvent': member view is not of type Window..
37 PASS new WheelEvent('eventType', { view: 12345 }).view threw exception TypeError : Failed to construct 'WheelEvent': member view is not of type Window.. 37 PASS new WheelEvent('eventType', { view: 12345 }).view threw exception TypeError : Failed to construct 'WheelEvent': member view is not of type Window..
38 PASS new WheelEvent('eventType', { view: 18446744073709551615 }).view threw exce ption TypeError: Failed to construct 'WheelEvent': member view is not of type Wi ndow.. 38 PASS new WheelEvent('eventType', { view: 18446744073709551615 }).view threw exce ption TypeError: Failed to construct 'WheelEvent': member view is not of type Wi ndow..
39 PASS new WheelEvent('eventType', { view: NaN }).view threw exception TypeError: Failed to construct 'WheelEvent': member view is not of type Window.. 39 PASS new WheelEvent('eventType', { view: NaN }).view threw exception TypeError: Failed to construct 'WheelEvent': member view is not of type Window..
40 PASS new WheelEvent('eventType', { view: {valueOf: function () { return window; } } }).view == window threw exception TypeError: Failed to construct 'WheelEvent ': member view is not of type Window.. 40 PASS new WheelEvent('eventType', { view: {valueOf: function () { return window; } } }).view == window threw exception TypeError: Failed to construct 'WheelEvent ': member view is not of type Window..
41 PASS new WheelEvent('eventType', { get view() { return window; } }).view is wind ow 41 PASS new WheelEvent('eventType', { get view() { return window; } }).view is wind ow
42 PASS new WheelEvent('eventType', { get view() { return 123; } }).view threw exce ption TypeError: Failed to construct 'WheelEvent': member view is not of type Wi ndow.. 42 PASS new WheelEvent('eventType', { get view() { return 123; } }).view threw exce ption TypeError: Failed to construct 'WheelEvent': member view is not of type Wi ndow..
43 PASS new WheelEvent('eventType', { get view() { throw 'WheelEvent Error'; } }) t hrew exception WheelEvent Error. 43 PASS new WheelEvent('eventType', { get view() { throw 'WheelEvent Error'; } }) t hrew exception WheelEvent Error.
44 PASS new WheelEvent('eventType', { detail: 0 }).detail is 0 44 PASS new WheelEvent('eventType', { detail: 0 }).detail is 0
45 PASS new WheelEvent('eventType', { detail: 1 }).detail is 1
46 PASS new WheelEvent('eventType', { detail: -1 }).detail is -1
45 PASS new WheelEvent('eventType', { detail: 2147483647 }).detail is 2147483647 47 PASS new WheelEvent('eventType', { detail: 2147483647 }).detail is 2147483647
46 PASS new WheelEvent('eventType', { detail: -1 }).detail is -1
47 PASS new WheelEvent('eventType', { detail: -2147483648 }).detail is -2147483648 48 PASS new WheelEvent('eventType', { detail: -2147483648 }).detail is -2147483648
48 PASS new WheelEvent('eventType', { detail: 4294967295 }).detail is -1
49 PASS new WheelEvent('eventType', { detail: 9007199254740991 }).detail is -1
50 PASS new WheelEvent('eventType', { detail: 18446744073709551615 }).detail is 0
51 PASS new WheelEvent('eventType', { detail: 123.45 }).detail is 123 49 PASS new WheelEvent('eventType', { detail: 123.45 }).detail is 123
50 PASS new WheelEvent('eventType', { detail: -123.45 }).detail is -123
52 PASS new WheelEvent('eventType', { detail: NaN }).detail is 0 51 PASS new WheelEvent('eventType', { detail: NaN }).detail is 0
53 PASS new WheelEvent('eventType', { detail: undefined }).detail is 0 52 PASS new WheelEvent('eventType', { detail: undefined }).detail is 0
54 PASS new WheelEvent('eventType', { detail: null }).detail is 0 53 PASS new WheelEvent('eventType', { detail: null }).detail is 0
55 PASS new WheelEvent('eventType', { detail: '' }).detail is 0 54 PASS new WheelEvent('eventType', { detail: '' }).detail is 0
56 PASS new WheelEvent('eventType', { detail: '12345' }).detail is 12345 55 PASS new WheelEvent('eventType', { detail: '12345' }).detail is 12345
57 PASS new WheelEvent('eventType', { detail: '12345a' }).detail is 0 56 PASS new WheelEvent('eventType', { detail: '12345a' }).detail is 0
58 PASS new WheelEvent('eventType', { detail: 'abc' }).detail is 0 57 PASS new WheelEvent('eventType', { detail: 'abc' }).detail is 0
59 PASS new WheelEvent('eventType', { detail: [] }).detail is 0 58 PASS new WheelEvent('eventType', { detail: [] }).detail is 0
60 PASS new WheelEvent('eventType', { detail: [12345] }).detail is 12345 59 PASS new WheelEvent('eventType', { detail: [12345] }).detail is 12345
61 PASS new WheelEvent('eventType', { detail: [12345, 67890] }).detail is 0 60 PASS new WheelEvent('eventType', { detail: [12345, 67890] }).detail is 0
62 PASS new WheelEvent('eventType', { detail: {} }).detail is 0 61 PASS new WheelEvent('eventType', { detail: {} }).detail is 0
63 PASS new WheelEvent('eventType', { detail: {moemoe: 12345} }).detail is 0 62 PASS new WheelEvent('eventType', { detail: {moemoe: 12345} }).detail is 0
64 PASS new WheelEvent('eventType', { detail: {valueOf: function () { return 12345; }} }).detail is 12345 63 PASS new WheelEvent('eventType', { detail: {valueOf: function () { return 12345; }} }).detail is 12345
65 PASS new WheelEvent('eventType', { screenX: 0 }).screenX is 0 64 PASS new WheelEvent('eventType', { screenX: 0 }).screenX is 0
65 PASS new WheelEvent('eventType', { screenX: 1 }).screenX is 1
66 PASS new WheelEvent('eventType', { screenX: -1 }).screenX is -1
66 PASS new WheelEvent('eventType', { screenX: 2147483647 }).screenX is 2147483647 67 PASS new WheelEvent('eventType', { screenX: 2147483647 }).screenX is 2147483647
67 PASS new WheelEvent('eventType', { screenX: -1 }).screenX is -1
68 PASS new WheelEvent('eventType', { screenX: -2147483648 }).screenX is -214748364 8 68 PASS new WheelEvent('eventType', { screenX: -2147483648 }).screenX is -214748364 8
69 PASS new WheelEvent('eventType', { screenX: 4294967295 }).screenX is -1
70 PASS new WheelEvent('eventType', { screenX: 9007199254740991 }).screenX is -1
71 PASS new WheelEvent('eventType', { screenX: 18446744073709551615 }).screenX is 0
72 PASS new WheelEvent('eventType', { screenX: 123.45 }).screenX is 123 69 PASS new WheelEvent('eventType', { screenX: 123.45 }).screenX is 123
73 PASS new WheelEvent('eventType', { screenX: NaN }).screenX is 0 70 PASS new WheelEvent('eventType', { screenX: -123.45 }).screenX is -123
71 PASS new WheelEvent('eventType', { screenX: NaN }).screenX threw exception TypeE rror: Failed to construct 'WheelEvent': The provided double value is non-finite. .
74 PASS new WheelEvent('eventType', { screenX: undefined }).screenX is 0 72 PASS new WheelEvent('eventType', { screenX: undefined }).screenX is 0
75 PASS new WheelEvent('eventType', { screenX: null }).screenX is 0 73 PASS new WheelEvent('eventType', { screenX: null }).screenX is 0
76 PASS new WheelEvent('eventType', { screenX: '' }).screenX is 0 74 PASS new WheelEvent('eventType', { screenX: '' }).screenX is 0
77 PASS new WheelEvent('eventType', { screenX: '12345' }).screenX is 12345 75 PASS new WheelEvent('eventType', { screenX: '12345' }).screenX is 12345
78 PASS new WheelEvent('eventType', { screenX: '12345a' }).screenX is 0 76 PASS new WheelEvent('eventType', { screenX: '12345a' }).screenX threw exception TypeError: Failed to construct 'WheelEvent': The provided double value is non-fi nite..
79 PASS new WheelEvent('eventType', { screenX: 'abc' }).screenX is 0 77 PASS new WheelEvent('eventType', { screenX: 'abc' }).screenX threw exception Typ eError: Failed to construct 'WheelEvent': The provided double value is non-finit e..
80 PASS new WheelEvent('eventType', { screenX: [] }).screenX is 0 78 PASS new WheelEvent('eventType', { screenX: [] }).screenX is 0
81 PASS new WheelEvent('eventType', { screenX: [12345] }).screenX is 12345 79 PASS new WheelEvent('eventType', { screenX: [12345] }).screenX is 12345
82 PASS new WheelEvent('eventType', { screenX: [12345, 67890] }).screenX is 0 80 PASS new WheelEvent('eventType', { screenX: [12345, 67890] }).screenX threw exce ption TypeError: Failed to construct 'WheelEvent': The provided double value is non-finite..
83 PASS new WheelEvent('eventType', { screenX: {} }).screenX is 0 81 PASS new WheelEvent('eventType', { screenX: {} }).screenX threw exception TypeEr ror: Failed to construct 'WheelEvent': The provided double value is non-finite..
84 PASS new WheelEvent('eventType', { screenX: {moemoe: 12345} }).screenX is 0 82 PASS new WheelEvent('eventType', { screenX: {moemoe: 12345} }).screenX threw exc eption TypeError: Failed to construct 'WheelEvent': The provided double value is non-finite..
85 PASS new WheelEvent('eventType', { screenX: {valueOf: function () { return 12345 ; }} }).screenX is 12345 83 PASS new WheelEvent('eventType', { screenX: {valueOf: function () { return 12345 ; }} }).screenX is 12345
86 PASS new WheelEvent('eventType', { screenY: 0 }).screenY is 0 84 PASS new WheelEvent('eventType', { screenY: 0 }).screenY is 0
85 PASS new WheelEvent('eventType', { screenY: 1 }).screenY is 1
86 PASS new WheelEvent('eventType', { screenY: -1 }).screenY is -1
87 PASS new WheelEvent('eventType', { screenY: 2147483647 }).screenY is 2147483647 87 PASS new WheelEvent('eventType', { screenY: 2147483647 }).screenY is 2147483647
88 PASS new WheelEvent('eventType', { screenY: -1 }).screenY is -1
89 PASS new WheelEvent('eventType', { screenY: -2147483648 }).screenY is -214748364 8 88 PASS new WheelEvent('eventType', { screenY: -2147483648 }).screenY is -214748364 8
90 PASS new WheelEvent('eventType', { screenY: 4294967295 }).screenY is -1
91 PASS new WheelEvent('eventType', { screenY: 9007199254740991 }).screenY is -1
92 PASS new WheelEvent('eventType', { screenY: 18446744073709551615 }).screenY is 0
93 PASS new WheelEvent('eventType', { screenY: 123.45 }).screenY is 123 89 PASS new WheelEvent('eventType', { screenY: 123.45 }).screenY is 123
94 PASS new WheelEvent('eventType', { screenY: NaN }).screenY is 0 90 PASS new WheelEvent('eventType', { screenY: -123.45 }).screenY is -123
91 PASS new WheelEvent('eventType', { screenY: NaN }).screenY threw exception TypeE rror: Failed to construct 'WheelEvent': The provided double value is non-finite. .
95 PASS new WheelEvent('eventType', { screenY: undefined }).screenY is 0 92 PASS new WheelEvent('eventType', { screenY: undefined }).screenY is 0
96 PASS new WheelEvent('eventType', { screenY: null }).screenY is 0 93 PASS new WheelEvent('eventType', { screenY: null }).screenY is 0
97 PASS new WheelEvent('eventType', { screenY: '' }).screenY is 0 94 PASS new WheelEvent('eventType', { screenY: '' }).screenY is 0
98 PASS new WheelEvent('eventType', { screenY: '12345' }).screenY is 12345 95 PASS new WheelEvent('eventType', { screenY: '12345' }).screenY is 12345
99 PASS new WheelEvent('eventType', { screenY: '12345a' }).screenY is 0 96 PASS new WheelEvent('eventType', { screenY: '12345a' }).screenY threw exception TypeError: Failed to construct 'WheelEvent': The provided double value is non-fi nite..
100 PASS new WheelEvent('eventType', { screenY: 'abc' }).screenY is 0 97 PASS new WheelEvent('eventType', { screenY: 'abc' }).screenY threw exception Typ eError: Failed to construct 'WheelEvent': The provided double value is non-finit e..
101 PASS new WheelEvent('eventType', { screenY: [] }).screenY is 0 98 PASS new WheelEvent('eventType', { screenY: [] }).screenY is 0
102 PASS new WheelEvent('eventType', { screenY: [12345] }).screenY is 12345 99 PASS new WheelEvent('eventType', { screenY: [12345] }).screenY is 12345
103 PASS new WheelEvent('eventType', { screenY: [12345, 67890] }).screenY is 0 100 PASS new WheelEvent('eventType', { screenY: [12345, 67890] }).screenY threw exce ption TypeError: Failed to construct 'WheelEvent': The provided double value is non-finite..
104 PASS new WheelEvent('eventType', { screenY: {} }).screenY is 0 101 PASS new WheelEvent('eventType', { screenY: {} }).screenY threw exception TypeEr ror: Failed to construct 'WheelEvent': The provided double value is non-finite..
105 PASS new WheelEvent('eventType', { screenY: {moemoe: 12345} }).screenY is 0 102 PASS new WheelEvent('eventType', { screenY: {moemoe: 12345} }).screenY threw exc eption TypeError: Failed to construct 'WheelEvent': The provided double value is non-finite..
106 PASS new WheelEvent('eventType', { screenY: {valueOf: function () { return 12345 ; }} }).screenY is 12345 103 PASS new WheelEvent('eventType', { screenY: {valueOf: function () { return 12345 ; }} }).screenY is 12345
107 PASS new WheelEvent('eventType', { clientX: 0 }).clientX is 0 104 PASS new WheelEvent('eventType', { clientX: 0 }).clientX is 0
108 PASS new WheelEvent('eventType', { clientX: 2147483647 }).clientX is 33554431 105 PASS new WheelEvent('eventType', { clientX: 1 }).clientX is 1
109 PASS new WheelEvent('eventType', { clientX: -1 }).clientX is -1 106 PASS new WheelEvent('eventType', { clientX: -1 }).clientX is -1
110 PASS new WheelEvent('eventType', { clientX: -2147483648 }).clientX is -33554432 107 PASS new WheelEvent('eventType', { clientX: 2147483647 }).clientX is 2147483647
111 PASS new WheelEvent('eventType', { clientX: 4294967295 }).clientX is -1 108 PASS new WheelEvent('eventType', { clientX: -2147483648 }).clientX is -214748364 8
112 PASS new WheelEvent('eventType', { clientX: 9007199254740991 }).clientX is -1
113 PASS new WheelEvent('eventType', { clientX: 18446744073709551615 }).clientX is 0
114 PASS new WheelEvent('eventType', { clientX: 123.45 }).clientX is 123 109 PASS new WheelEvent('eventType', { clientX: 123.45 }).clientX is 123
115 PASS new WheelEvent('eventType', { clientX: NaN }).clientX is 0 110 PASS new WheelEvent('eventType', { clientX: -123.45 }).clientX is -123
111 PASS new WheelEvent('eventType', { clientX: NaN }).clientX threw exception TypeE rror: Failed to construct 'WheelEvent': The provided double value is non-finite. .
116 PASS new WheelEvent('eventType', { clientX: undefined }).clientX is 0 112 PASS new WheelEvent('eventType', { clientX: undefined }).clientX is 0
117 PASS new WheelEvent('eventType', { clientX: null }).clientX is 0 113 PASS new WheelEvent('eventType', { clientX: null }).clientX is 0
118 PASS new WheelEvent('eventType', { clientX: '' }).clientX is 0 114 PASS new WheelEvent('eventType', { clientX: '' }).clientX is 0
119 PASS new WheelEvent('eventType', { clientX: '12345' }).clientX is 12345 115 PASS new WheelEvent('eventType', { clientX: '12345' }).clientX is 12345
120 PASS new WheelEvent('eventType', { clientX: '12345a' }).clientX is 0 116 PASS new WheelEvent('eventType', { clientX: '12345a' }).clientX threw exception TypeError: Failed to construct 'WheelEvent': The provided double value is non-fi nite..
121 PASS new WheelEvent('eventType', { clientX: 'abc' }).clientX is 0 117 PASS new WheelEvent('eventType', { clientX: 'abc' }).clientX threw exception Typ eError: Failed to construct 'WheelEvent': The provided double value is non-finit e..
122 PASS new WheelEvent('eventType', { clientX: [] }).clientX is 0 118 PASS new WheelEvent('eventType', { clientX: [] }).clientX is 0
123 PASS new WheelEvent('eventType', { clientX: [12345] }).clientX is 12345 119 PASS new WheelEvent('eventType', { clientX: [12345] }).clientX is 12345
124 PASS new WheelEvent('eventType', { clientX: [12345, 67890] }).clientX is 0 120 PASS new WheelEvent('eventType', { clientX: [12345, 67890] }).clientX threw exce ption TypeError: Failed to construct 'WheelEvent': The provided double value is non-finite..
125 PASS new WheelEvent('eventType', { clientX: {} }).clientX is 0 121 PASS new WheelEvent('eventType', { clientX: {} }).clientX threw exception TypeEr ror: Failed to construct 'WheelEvent': The provided double value is non-finite..
126 PASS new WheelEvent('eventType', { clientX: {moemoe: 12345} }).clientX is 0 122 PASS new WheelEvent('eventType', { clientX: {moemoe: 12345} }).clientX threw exc eption TypeError: Failed to construct 'WheelEvent': The provided double value is non-finite..
127 PASS new WheelEvent('eventType', { clientX: {valueOf: function () { return 12345 ; }} }).clientX is 12345 123 PASS new WheelEvent('eventType', { clientX: {valueOf: function () { return 12345 ; }} }).clientX is 12345
128 PASS new WheelEvent('eventType', { clientY: 0 }).clientY is 0 124 PASS new WheelEvent('eventType', { clientY: 0 }).clientY is 0
129 PASS new WheelEvent('eventType', { clientY: 2147483647 }).clientY is 33554431 125 PASS new WheelEvent('eventType', { clientY: 1 }).clientY is 1
130 PASS new WheelEvent('eventType', { clientY: -1 }).clientY is -1 126 PASS new WheelEvent('eventType', { clientY: -1 }).clientY is -1
131 PASS new WheelEvent('eventType', { clientY: -2147483648 }).clientY is -33554432 127 PASS new WheelEvent('eventType', { clientY: 2147483647 }).clientY is 2147483647
132 PASS new WheelEvent('eventType', { clientY: 4294967295 }).clientY is -1 128 PASS new WheelEvent('eventType', { clientY: -2147483648 }).clientY is -214748364 8
133 PASS new WheelEvent('eventType', { clientY: 9007199254740991 }).clientY is -1
134 PASS new WheelEvent('eventType', { clientY: 18446744073709551615 }).clientY is 0
135 PASS new WheelEvent('eventType', { clientY: 123.45 }).clientY is 123 129 PASS new WheelEvent('eventType', { clientY: 123.45 }).clientY is 123
136 PASS new WheelEvent('eventType', { clientY: NaN }).clientY is 0 130 PASS new WheelEvent('eventType', { clientY: -123.45 }).clientY is -123
131 PASS new WheelEvent('eventType', { clientY: NaN }).clientY threw exception TypeE rror: Failed to construct 'WheelEvent': The provided double value is non-finite. .
137 PASS new WheelEvent('eventType', { clientY: undefined }).clientY is 0 132 PASS new WheelEvent('eventType', { clientY: undefined }).clientY is 0
138 PASS new WheelEvent('eventType', { clientY: null }).clientY is 0 133 PASS new WheelEvent('eventType', { clientY: null }).clientY is 0
139 PASS new WheelEvent('eventType', { clientY: '' }).clientY is 0 134 PASS new WheelEvent('eventType', { clientY: '' }).clientY is 0
140 PASS new WheelEvent('eventType', { clientY: '12345' }).clientY is 12345 135 PASS new WheelEvent('eventType', { clientY: '12345' }).clientY is 12345
141 PASS new WheelEvent('eventType', { clientY: '12345a' }).clientY is 0 136 PASS new WheelEvent('eventType', { clientY: '12345a' }).clientY threw exception TypeError: Failed to construct 'WheelEvent': The provided double value is non-fi nite..
142 PASS new WheelEvent('eventType', { clientY: 'abc' }).clientY is 0 137 PASS new WheelEvent('eventType', { clientY: 'abc' }).clientY threw exception Typ eError: Failed to construct 'WheelEvent': The provided double value is non-finit e..
143 PASS new WheelEvent('eventType', { clientY: [] }).clientY is 0 138 PASS new WheelEvent('eventType', { clientY: [] }).clientY is 0
144 PASS new WheelEvent('eventType', { clientY: [12345] }).clientY is 12345 139 PASS new WheelEvent('eventType', { clientY: [12345] }).clientY is 12345
145 PASS new WheelEvent('eventType', { clientY: [12345, 67890] }).clientY is 0 140 PASS new WheelEvent('eventType', { clientY: [12345, 67890] }).clientY threw exce ption TypeError: Failed to construct 'WheelEvent': The provided double value is non-finite..
146 PASS new WheelEvent('eventType', { clientY: {} }).clientY is 0 141 PASS new WheelEvent('eventType', { clientY: {} }).clientY threw exception TypeEr ror: Failed to construct 'WheelEvent': The provided double value is non-finite..
147 PASS new WheelEvent('eventType', { clientY: {moemoe: 12345} }).clientY is 0 142 PASS new WheelEvent('eventType', { clientY: {moemoe: 12345} }).clientY threw exc eption TypeError: Failed to construct 'WheelEvent': The provided double value is non-finite..
148 PASS new WheelEvent('eventType', { clientY: {valueOf: function () { return 12345 ; }} }).clientY is 12345 143 PASS new WheelEvent('eventType', { clientY: {valueOf: function () { return 12345 ; }} }).clientY is 12345
149 PASS new WheelEvent('eventType', { wheelDeltaX: 0 }).wheelDeltaX is 0 144 PASS new WheelEvent('eventType', { wheelDeltaX: 0 }).wheelDeltaX is 0
145 PASS new WheelEvent('eventType', { wheelDeltaX: 1 }).wheelDeltaX is 1
146 PASS new WheelEvent('eventType', { wheelDeltaX: -1 }).wheelDeltaX is -1
150 PASS new WheelEvent('eventType', { wheelDeltaX: 2147483647 }).wheelDeltaX is 214 7483647 147 PASS new WheelEvent('eventType', { wheelDeltaX: 2147483647 }).wheelDeltaX is 214 7483647
151 PASS new WheelEvent('eventType', { wheelDeltaX: -1 }).wheelDeltaX is -1
152 PASS new WheelEvent('eventType', { wheelDeltaX: -2147483648 }).wheelDeltaX is -2 147483648 148 PASS new WheelEvent('eventType', { wheelDeltaX: -2147483648 }).wheelDeltaX is -2 147483648
153 PASS new WheelEvent('eventType', { wheelDeltaX: 4294967295 }).wheelDeltaX is -1
154 PASS new WheelEvent('eventType', { wheelDeltaX: 9007199254740991 }).wheelDeltaX is -1
155 PASS new WheelEvent('eventType', { wheelDeltaX: 18446744073709551615 }).wheelDel taX is 0
156 PASS new WheelEvent('eventType', { wheelDeltaX: 123.45 }).wheelDeltaX is 123 149 PASS new WheelEvent('eventType', { wheelDeltaX: 123.45 }).wheelDeltaX is 123
150 PASS new WheelEvent('eventType', { wheelDeltaX: -123.45 }).wheelDeltaX is -123
157 PASS new WheelEvent('eventType', { wheelDeltaX: NaN }).wheelDeltaX is 0 151 PASS new WheelEvent('eventType', { wheelDeltaX: NaN }).wheelDeltaX is 0
158 PASS new WheelEvent('eventType', { wheelDeltaX: undefined }).wheelDeltaX is 0 152 PASS new WheelEvent('eventType', { wheelDeltaX: undefined }).wheelDeltaX is 0
159 PASS new WheelEvent('eventType', { wheelDeltaX: null }).wheelDeltaX is 0 153 PASS new WheelEvent('eventType', { wheelDeltaX: null }).wheelDeltaX is 0
160 PASS new WheelEvent('eventType', { wheelDeltaX: '' }).wheelDeltaX is 0 154 PASS new WheelEvent('eventType', { wheelDeltaX: '' }).wheelDeltaX is 0
161 PASS new WheelEvent('eventType', { wheelDeltaX: '12345' }).wheelDeltaX is 12345 155 PASS new WheelEvent('eventType', { wheelDeltaX: '12345' }).wheelDeltaX is 12345
162 PASS new WheelEvent('eventType', { wheelDeltaX: '12345a' }).wheelDeltaX is 0 156 PASS new WheelEvent('eventType', { wheelDeltaX: '12345a' }).wheelDeltaX is 0
163 PASS new WheelEvent('eventType', { wheelDeltaX: 'abc' }).wheelDeltaX is 0 157 PASS new WheelEvent('eventType', { wheelDeltaX: 'abc' }).wheelDeltaX is 0
164 PASS new WheelEvent('eventType', { wheelDeltaX: [] }).wheelDeltaX is 0 158 PASS new WheelEvent('eventType', { wheelDeltaX: [] }).wheelDeltaX is 0
165 PASS new WheelEvent('eventType', { wheelDeltaX: [12345] }).wheelDeltaX is 12345 159 PASS new WheelEvent('eventType', { wheelDeltaX: [12345] }).wheelDeltaX is 12345
166 PASS new WheelEvent('eventType', { wheelDeltaX: [12345, 67890] }).wheelDeltaX is 0 160 PASS new WheelEvent('eventType', { wheelDeltaX: [12345, 67890] }).wheelDeltaX is 0
167 PASS new WheelEvent('eventType', { wheelDeltaX: {} }).wheelDeltaX is 0 161 PASS new WheelEvent('eventType', { wheelDeltaX: {} }).wheelDeltaX is 0
168 PASS new WheelEvent('eventType', { wheelDeltaX: {moemoe: 12345} }).wheelDeltaX i s 0 162 PASS new WheelEvent('eventType', { wheelDeltaX: {moemoe: 12345} }).wheelDeltaX i s 0
169 PASS new WheelEvent('eventType', { wheelDeltaX: {valueOf: function () { return 1 2345; }} }).wheelDeltaX is 12345 163 PASS new WheelEvent('eventType', { wheelDeltaX: {valueOf: function () { return 1 2345; }} }).wheelDeltaX is 12345
170 PASS new WheelEvent('eventType', { wheelDeltaY: 0 }).wheelDeltaY is 0 164 PASS new WheelEvent('eventType', { wheelDeltaY: 0 }).wheelDeltaY is 0
165 PASS new WheelEvent('eventType', { wheelDeltaY: 1 }).wheelDeltaY is 1
166 PASS new WheelEvent('eventType', { wheelDeltaY: -1 }).wheelDeltaY is -1
171 PASS new WheelEvent('eventType', { wheelDeltaY: 2147483647 }).wheelDeltaY is 214 7483647 167 PASS new WheelEvent('eventType', { wheelDeltaY: 2147483647 }).wheelDeltaY is 214 7483647
172 PASS new WheelEvent('eventType', { wheelDeltaY: -1 }).wheelDeltaY is -1
173 PASS new WheelEvent('eventType', { wheelDeltaY: -2147483648 }).wheelDeltaY is -2 147483648 168 PASS new WheelEvent('eventType', { wheelDeltaY: -2147483648 }).wheelDeltaY is -2 147483648
174 PASS new WheelEvent('eventType', { wheelDeltaY: 4294967295 }).wheelDeltaY is -1
175 PASS new WheelEvent('eventType', { wheelDeltaY: 9007199254740991 }).wheelDeltaY is -1
176 PASS new WheelEvent('eventType', { wheelDeltaY: 18446744073709551615 }).wheelDel taY is 0
177 PASS new WheelEvent('eventType', { wheelDeltaY: 123.45 }).wheelDeltaY is 123 169 PASS new WheelEvent('eventType', { wheelDeltaY: 123.45 }).wheelDeltaY is 123
170 PASS new WheelEvent('eventType', { wheelDeltaY: -123.45 }).wheelDeltaY is -123
178 PASS new WheelEvent('eventType', { wheelDeltaY: NaN }).wheelDeltaY is 0 171 PASS new WheelEvent('eventType', { wheelDeltaY: NaN }).wheelDeltaY is 0
179 PASS new WheelEvent('eventType', { wheelDeltaY: undefined }).wheelDeltaY is 0 172 PASS new WheelEvent('eventType', { wheelDeltaY: undefined }).wheelDeltaY is 0
180 PASS new WheelEvent('eventType', { wheelDeltaY: null }).wheelDeltaY is 0 173 PASS new WheelEvent('eventType', { wheelDeltaY: null }).wheelDeltaY is 0
181 PASS new WheelEvent('eventType', { wheelDeltaY: '' }).wheelDeltaY is 0 174 PASS new WheelEvent('eventType', { wheelDeltaY: '' }).wheelDeltaY is 0
182 PASS new WheelEvent('eventType', { wheelDeltaY: '12345' }).wheelDeltaY is 12345 175 PASS new WheelEvent('eventType', { wheelDeltaY: '12345' }).wheelDeltaY is 12345
183 PASS new WheelEvent('eventType', { wheelDeltaY: '12345a' }).wheelDeltaY is 0 176 PASS new WheelEvent('eventType', { wheelDeltaY: '12345a' }).wheelDeltaY is 0
184 PASS new WheelEvent('eventType', { wheelDeltaY: 'abc' }).wheelDeltaY is 0 177 PASS new WheelEvent('eventType', { wheelDeltaY: 'abc' }).wheelDeltaY is 0
185 PASS new WheelEvent('eventType', { wheelDeltaY: [] }).wheelDeltaY is 0 178 PASS new WheelEvent('eventType', { wheelDeltaY: [] }).wheelDeltaY is 0
186 PASS new WheelEvent('eventType', { wheelDeltaY: [12345] }).wheelDeltaY is 12345 179 PASS new WheelEvent('eventType', { wheelDeltaY: [12345] }).wheelDeltaY is 12345
187 PASS new WheelEvent('eventType', { wheelDeltaY: [12345, 67890] }).wheelDeltaY is 0 180 PASS new WheelEvent('eventType', { wheelDeltaY: [12345, 67890] }).wheelDeltaY is 0
188 PASS new WheelEvent('eventType', { wheelDeltaY: {} }).wheelDeltaY is 0 181 PASS new WheelEvent('eventType', { wheelDeltaY: {} }).wheelDeltaY is 0
189 PASS new WheelEvent('eventType', { wheelDeltaY: {moemoe: 12345} }).wheelDeltaY i s 0 182 PASS new WheelEvent('eventType', { wheelDeltaY: {moemoe: 12345} }).wheelDeltaY i s 0
190 PASS new WheelEvent('eventType', { wheelDeltaY: {valueOf: function () { return 1 2345; }} }).wheelDeltaY is 12345 183 PASS new WheelEvent('eventType', { wheelDeltaY: {valueOf: function () { return 1 2345; }} }).wheelDeltaY is 12345
191 PASS new WheelEvent('eventType', { deltaX: 0 }).deltaX is 0 184 PASS new WheelEvent('eventType', { deltaX: 0 }).deltaX is 0
185 PASS new WheelEvent('eventType', { deltaX: 1 }).deltaX is 1
186 PASS new WheelEvent('eventType', { deltaX: -1 }).deltaX is -1
192 PASS new WheelEvent('eventType', { deltaX: 2147483647 }).deltaX is 2147483647 187 PASS new WheelEvent('eventType', { deltaX: 2147483647 }).deltaX is 2147483647
193 PASS new WheelEvent('eventType', { deltaX: -1 }).deltaX is -1
194 PASS new WheelEvent('eventType', { deltaX: -2147483648 }).deltaX is -2147483648 188 PASS new WheelEvent('eventType', { deltaX: -2147483648 }).deltaX is -2147483648
195 PASS new WheelEvent('eventType', { deltaX: 4294967295 }).deltaX is 4294967295
196 PASS new WheelEvent('eventType', { deltaX: 9007199254740991 }).deltaX is 9007199 254740991
197 PASS new WheelEvent('eventType', { deltaX: 18446744073709551615 }).deltaX is 184 46744073709551615
198 PASS new WheelEvent('eventType', { deltaX: 123.45 }).deltaX is 123.45 189 PASS new WheelEvent('eventType', { deltaX: 123.45 }).deltaX is 123.45
190 PASS new WheelEvent('eventType', { deltaX: -123.45 }).deltaX is -123.45
199 PASS new WheelEvent('eventType', { deltaX: NaN }).deltaX threw exception TypeErr or: Failed to construct 'WheelEvent': The provided double value is non-finite.. 191 PASS new WheelEvent('eventType', { deltaX: NaN }).deltaX threw exception TypeErr or: Failed to construct 'WheelEvent': The provided double value is non-finite..
200 PASS new WheelEvent('eventType', { deltaX: undefined }).deltaX is 0 192 PASS new WheelEvent('eventType', { deltaX: undefined }).deltaX is 0
201 PASS new WheelEvent('eventType', { deltaX: null }).deltaX is 0 193 PASS new WheelEvent('eventType', { deltaX: null }).deltaX is 0
202 PASS new WheelEvent('eventType', { deltaX: '' }).deltaX is 0 194 PASS new WheelEvent('eventType', { deltaX: '' }).deltaX is 0
203 PASS new WheelEvent('eventType', { deltaX: '12345' }).deltaX is 12345 195 PASS new WheelEvent('eventType', { deltaX: '12345' }).deltaX is 12345
204 PASS new WheelEvent('eventType', { deltaX: '12345a' }).deltaX threw exception Ty peError: Failed to construct 'WheelEvent': The provided double value is non-fini te.. 196 PASS new WheelEvent('eventType', { deltaX: '12345a' }).deltaX threw exception Ty peError: Failed to construct 'WheelEvent': The provided double value is non-fini te..
205 PASS new WheelEvent('eventType', { deltaX: 'abc' }).deltaX threw exception TypeE rror: Failed to construct 'WheelEvent': The provided double value is non-finite. . 197 PASS new WheelEvent('eventType', { deltaX: 'abc' }).deltaX threw exception TypeE rror: Failed to construct 'WheelEvent': The provided double value is non-finite. .
206 PASS new WheelEvent('eventType', { deltaX: [] }).deltaX is 0 198 PASS new WheelEvent('eventType', { deltaX: [] }).deltaX is 0
207 PASS new WheelEvent('eventType', { deltaX: [12345] }).deltaX is 12345 199 PASS new WheelEvent('eventType', { deltaX: [12345] }).deltaX is 12345
208 PASS new WheelEvent('eventType', { deltaX: [12345, 67890] }).deltaX threw except ion TypeError: Failed to construct 'WheelEvent': The provided double value is no n-finite.. 200 PASS new WheelEvent('eventType', { deltaX: [12345, 67890] }).deltaX threw except ion TypeError: Failed to construct 'WheelEvent': The provided double value is no n-finite..
209 PASS new WheelEvent('eventType', { deltaX: {} }).deltaX threw exception TypeErro r: Failed to construct 'WheelEvent': The provided double value is non-finite.. 201 PASS new WheelEvent('eventType', { deltaX: {} }).deltaX threw exception TypeErro r: Failed to construct 'WheelEvent': The provided double value is non-finite..
210 PASS new WheelEvent('eventType', { deltaX: {moemoe: 12345} }).deltaX threw excep tion TypeError: Failed to construct 'WheelEvent': The provided double value is n on-finite.. 202 PASS new WheelEvent('eventType', { deltaX: {moemoe: 12345} }).deltaX threw excep tion TypeError: Failed to construct 'WheelEvent': The provided double value is n on-finite..
211 PASS new WheelEvent('eventType', { deltaX: {valueOf: function () { return 12345; }} }).deltaX is 12345 203 PASS new WheelEvent('eventType', { deltaX: {valueOf: function () { return 12345; }} }).deltaX is 12345
212 PASS new WheelEvent('eventType', { deltaY: 0 }).deltaY is 0 204 PASS new WheelEvent('eventType', { deltaY: 0 }).deltaY is 0
205 PASS new WheelEvent('eventType', { deltaY: 1 }).deltaY is 1
206 PASS new WheelEvent('eventType', { deltaY: -1 }).deltaY is -1
213 PASS new WheelEvent('eventType', { deltaY: 2147483647 }).deltaY is 2147483647 207 PASS new WheelEvent('eventType', { deltaY: 2147483647 }).deltaY is 2147483647
214 PASS new WheelEvent('eventType', { deltaY: -1 }).deltaY is -1
215 PASS new WheelEvent('eventType', { deltaY: -2147483648 }).deltaY is -2147483648 208 PASS new WheelEvent('eventType', { deltaY: -2147483648 }).deltaY is -2147483648
216 PASS new WheelEvent('eventType', { deltaY: 4294967295 }).deltaY is 4294967295
217 PASS new WheelEvent('eventType', { deltaY: 9007199254740991 }).deltaY is 9007199 254740991
218 PASS new WheelEvent('eventType', { deltaY: 18446744073709551615 }).deltaY is 184 46744073709551615
219 PASS new WheelEvent('eventType', { deltaY: 123.45 }).deltaY is 123.45 209 PASS new WheelEvent('eventType', { deltaY: 123.45 }).deltaY is 123.45
210 PASS new WheelEvent('eventType', { deltaY: -123.45 }).deltaY is -123.45
220 PASS new WheelEvent('eventType', { deltaY: NaN }).deltaY threw exception TypeErr or: Failed to construct 'WheelEvent': The provided double value is non-finite.. 211 PASS new WheelEvent('eventType', { deltaY: NaN }).deltaY threw exception TypeErr or: Failed to construct 'WheelEvent': The provided double value is non-finite..
221 PASS new WheelEvent('eventType', { deltaY: undefined }).deltaY is 0 212 PASS new WheelEvent('eventType', { deltaY: undefined }).deltaY is 0
222 PASS new WheelEvent('eventType', { deltaY: null }).deltaY is 0 213 PASS new WheelEvent('eventType', { deltaY: null }).deltaY is 0
223 PASS new WheelEvent('eventType', { deltaY: '' }).deltaY is 0 214 PASS new WheelEvent('eventType', { deltaY: '' }).deltaY is 0
224 PASS new WheelEvent('eventType', { deltaY: '12345' }).deltaY is 12345 215 PASS new WheelEvent('eventType', { deltaY: '12345' }).deltaY is 12345
225 PASS new WheelEvent('eventType', { deltaY: '12345a' }).deltaY threw exception Ty peError: Failed to construct 'WheelEvent': The provided double value is non-fini te.. 216 PASS new WheelEvent('eventType', { deltaY: '12345a' }).deltaY threw exception Ty peError: Failed to construct 'WheelEvent': The provided double value is non-fini te..
226 PASS new WheelEvent('eventType', { deltaY: 'abc' }).deltaY threw exception TypeE rror: Failed to construct 'WheelEvent': The provided double value is non-finite. . 217 PASS new WheelEvent('eventType', { deltaY: 'abc' }).deltaY threw exception TypeE rror: Failed to construct 'WheelEvent': The provided double value is non-finite. .
227 PASS new WheelEvent('eventType', { deltaY: [] }).deltaY is 0 218 PASS new WheelEvent('eventType', { deltaY: [] }).deltaY is 0
228 PASS new WheelEvent('eventType', { deltaY: [12345] }).deltaY is 12345 219 PASS new WheelEvent('eventType', { deltaY: [12345] }).deltaY is 12345
229 PASS new WheelEvent('eventType', { deltaY: [12345, 67890] }).deltaY threw except ion TypeError: Failed to construct 'WheelEvent': The provided double value is no n-finite.. 220 PASS new WheelEvent('eventType', { deltaY: [12345, 67890] }).deltaY threw except ion TypeError: Failed to construct 'WheelEvent': The provided double value is no n-finite..
230 PASS new WheelEvent('eventType', { deltaY: {} }).deltaY threw exception TypeErro r: Failed to construct 'WheelEvent': The provided double value is non-finite.. 221 PASS new WheelEvent('eventType', { deltaY: {} }).deltaY threw exception TypeErro r: Failed to construct 'WheelEvent': The provided double value is non-finite..
231 PASS new WheelEvent('eventType', { deltaY: {moemoe: 12345} }).deltaY threw excep tion TypeError: Failed to construct 'WheelEvent': The provided double value is n on-finite.. 222 PASS new WheelEvent('eventType', { deltaY: {moemoe: 12345} }).deltaY threw excep tion TypeError: Failed to construct 'WheelEvent': The provided double value is n on-finite..
232 PASS new WheelEvent('eventType', { deltaY: {valueOf: function () { return 12345; }} }).deltaY is 12345 223 PASS new WheelEvent('eventType', { deltaY: {valueOf: function () { return 12345; }} }).deltaY is 12345
233 PASS new WheelEvent('eventType', { deltaZ: 0 }).deltaZ is 0 224 PASS new WheelEvent('eventType', { deltaZ: 0 }).deltaZ is 0
225 PASS new WheelEvent('eventType', { deltaZ: 1 }).deltaZ is 1
226 PASS new WheelEvent('eventType', { deltaZ: -1 }).deltaZ is -1
234 PASS new WheelEvent('eventType', { deltaZ: 2147483647 }).deltaZ is 2147483647 227 PASS new WheelEvent('eventType', { deltaZ: 2147483647 }).deltaZ is 2147483647
235 PASS new WheelEvent('eventType', { deltaZ: -1 }).deltaZ is -1
236 PASS new WheelEvent('eventType', { deltaZ: -2147483648 }).deltaZ is -2147483648 228 PASS new WheelEvent('eventType', { deltaZ: -2147483648 }).deltaZ is -2147483648
237 PASS new WheelEvent('eventType', { deltaZ: 4294967295 }).deltaZ is 4294967295
238 PASS new WheelEvent('eventType', { deltaZ: 9007199254740991 }).deltaZ is 9007199 254740991
239 PASS new WheelEvent('eventType', { deltaZ: 18446744073709551615 }).deltaZ is 184 46744073709551615
240 PASS new WheelEvent('eventType', { deltaZ: 123.45 }).deltaZ is 123.45 229 PASS new WheelEvent('eventType', { deltaZ: 123.45 }).deltaZ is 123.45
230 PASS new WheelEvent('eventType', { deltaZ: -123.45 }).deltaZ is -123.45
241 PASS new WheelEvent('eventType', { deltaZ: NaN }).deltaZ threw exception TypeErr or: Failed to construct 'WheelEvent': The provided double value is non-finite.. 231 PASS new WheelEvent('eventType', { deltaZ: NaN }).deltaZ threw exception TypeErr or: Failed to construct 'WheelEvent': The provided double value is non-finite..
242 PASS new WheelEvent('eventType', { deltaZ: undefined }).deltaZ is 0 232 PASS new WheelEvent('eventType', { deltaZ: undefined }).deltaZ is 0
243 PASS new WheelEvent('eventType', { deltaZ: null }).deltaZ is 0 233 PASS new WheelEvent('eventType', { deltaZ: null }).deltaZ is 0
244 PASS new WheelEvent('eventType', { deltaZ: '' }).deltaZ is 0 234 PASS new WheelEvent('eventType', { deltaZ: '' }).deltaZ is 0
245 PASS new WheelEvent('eventType', { deltaZ: '12345' }).deltaZ is 12345 235 PASS new WheelEvent('eventType', { deltaZ: '12345' }).deltaZ is 12345
246 PASS new WheelEvent('eventType', { deltaZ: '12345a' }).deltaZ threw exception Ty peError: Failed to construct 'WheelEvent': The provided double value is non-fini te.. 236 PASS new WheelEvent('eventType', { deltaZ: '12345a' }).deltaZ threw exception Ty peError: Failed to construct 'WheelEvent': The provided double value is non-fini te..
247 PASS new WheelEvent('eventType', { deltaZ: 'abc' }).deltaZ threw exception TypeE rror: Failed to construct 'WheelEvent': The provided double value is non-finite. . 237 PASS new WheelEvent('eventType', { deltaZ: 'abc' }).deltaZ threw exception TypeE rror: Failed to construct 'WheelEvent': The provided double value is non-finite. .
248 PASS new WheelEvent('eventType', { deltaZ: [] }).deltaZ is 0 238 PASS new WheelEvent('eventType', { deltaZ: [] }).deltaZ is 0
249 PASS new WheelEvent('eventType', { deltaZ: [12345] }).deltaZ is 12345 239 PASS new WheelEvent('eventType', { deltaZ: [12345] }).deltaZ is 12345
250 PASS new WheelEvent('eventType', { deltaZ: [12345, 67890] }).deltaZ threw except ion TypeError: Failed to construct 'WheelEvent': The provided double value is no n-finite.. 240 PASS new WheelEvent('eventType', { deltaZ: [12345, 67890] }).deltaZ threw except ion TypeError: Failed to construct 'WheelEvent': The provided double value is no n-finite..
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 PASS new WheelEvent('eventType', { bubbles: true, cancelable: true, view: window , detail: 111, screenX: 222, screenY: 333, clientX: 444, clientY: 555, ctrlKey: true, shiftKey: true, altKey: true, metaKey: true, button: 666, relatedTarget: t estDiv, wheelDeltaX: 777, wheelDeltaY: 888, deltaMode: WheelEvent.DOM_DELTA_PAGE }).metaKey is true 332 PASS new WheelEvent('eventType', { bubbles: true, cancelable: true, view: window , detail: 111, screenX: 222, screenY: 333, clientX: 444, clientY: 555, ctrlKey: true, shiftKey: true, altKey: true, metaKey: true, button: 666, relatedTarget: t estDiv, wheelDeltaX: 777, wheelDeltaY: 888, deltaMode: WheelEvent.DOM_DELTA_PAGE }).metaKey is true
343 PASS new WheelEvent('eventType', { bubbles: true, cancelable: true, view: window , detail: 111, screenX: 222, screenY: 333, clientX: 444, clientY: 555, ctrlKey: true, shiftKey: true, altKey: true, metaKey: true, button: 666, relatedTarget: t estDiv, wheelDeltaX: 777, wheelDeltaY: 888, deltaMode: WheelEvent.DOM_DELTA_PAGE }).button is 666 333 PASS new WheelEvent('eventType', { bubbles: true, cancelable: true, view: window , detail: 111, screenX: 222, screenY: 333, clientX: 444, clientY: 555, ctrlKey: true, shiftKey: true, altKey: true, metaKey: true, button: 666, relatedTarget: t estDiv, wheelDeltaX: 777, wheelDeltaY: 888, deltaMode: WheelEvent.DOM_DELTA_PAGE }).button is 666
344 PASS new WheelEvent('eventType', { bubbles: true, cancelable: true, view: window , detail: 111, screenX: 222, screenY: 333, clientX: 444, clientY: 555, ctrlKey: true, shiftKey: true, altKey: true, metaKey: true, button: 666, relatedTarget: t estDiv, wheelDeltaX: 777, wheelDeltaY: 888, deltaMode: WheelEvent.DOM_DELTA_PAGE }).relatedTarget is testDiv 334 PASS new WheelEvent('eventType', { bubbles: true, cancelable: true, view: window , detail: 111, screenX: 222, screenY: 333, clientX: 444, clientY: 555, ctrlKey: true, shiftKey: true, altKey: true, metaKey: true, button: 666, relatedTarget: t estDiv, wheelDeltaX: 777, wheelDeltaY: 888, deltaMode: WheelEvent.DOM_DELTA_PAGE }).relatedTarget is testDiv
345 PASS new WheelEvent('eventType', { bubbles: true, cancelable: true, view: window , detail: 111, screenX: 222, screenY: 333, clientX: 444, clientY: 555, ctrlKey: true, shiftKey: true, altKey: true, metaKey: true, button: 666, relatedTarget: t estDiv, wheelDeltaX: 777, wheelDeltaY: 888, deltaMode: WheelEvent.DOM_DELTA_PAGE }).wheelDeltaX is 777 335 PASS new WheelEvent('eventType', { bubbles: true, cancelable: true, view: window , detail: 111, screenX: 222, screenY: 333, clientX: 444, clientY: 555, ctrlKey: true, shiftKey: true, altKey: true, metaKey: true, button: 666, relatedTarget: t estDiv, wheelDeltaX: 777, wheelDeltaY: 888, deltaMode: WheelEvent.DOM_DELTA_PAGE }).wheelDeltaX is 777
346 PASS new WheelEvent('eventType', { bubbles: true, cancelable: true, view: window , detail: 111, screenX: 222, screenY: 333, clientX: 444, clientY: 555, ctrlKey: true, shiftKey: true, altKey: true, metaKey: true, button: 666, relatedTarget: t estDiv, wheelDeltaX: 777, wheelDeltaY: 888, deltaMode: WheelEvent.DOM_DELTA_PAGE }).wheelDeltaY is 888 336 PASS new WheelEvent('eventType', { bubbles: true, cancelable: true, view: window , detail: 111, screenX: 222, screenY: 333, clientX: 444, clientY: 555, ctrlKey: true, shiftKey: true, altKey: true, metaKey: true, button: 666, relatedTarget: t estDiv, wheelDeltaX: 777, wheelDeltaY: 888, deltaMode: WheelEvent.DOM_DELTA_PAGE }).wheelDeltaY is 888
347 PASS new WheelEvent('eventType', { bubbles: true, cancelable: true, view: window , detail: 111, screenX: 222, screenY: 333, clientX: 444, clientY: 555, ctrlKey: true, shiftKey: true, altKey: true, metaKey: true, button: 666, relatedTarget: t estDiv, wheelDeltaX: 777, wheelDeltaY: 888, deltaMode: WheelEvent.DOM_DELTA_PAGE }).deltaMode is WheelEvent.DOM_DELTA_PAGE 337 PASS new WheelEvent('eventType', { bubbles: true, cancelable: true, view: window , detail: 111, screenX: 222, screenY: 333, clientX: 444, clientY: 555, ctrlKey: true, shiftKey: true, altKey: true, metaKey: true, button: 666, relatedTarget: t estDiv, wheelDeltaX: 777, wheelDeltaY: 888, deltaMode: WheelEvent.DOM_DELTA_PAGE }).deltaMode is WheelEvent.DOM_DELTA_PAGE
348 PASS successfullyParsed is true 338 PASS successfullyParsed is true
349 339
350 TEST COMPLETE 340 TEST COMPLETE
351 341
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698