| OLD | NEW |
| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 PASS new WheelEvent('eventType', { detail: '12345' }).detail is 12345 | 56 PASS new WheelEvent('eventType', { detail: '12345' }).detail is 12345 |
| 57 PASS new WheelEvent('eventType', { detail: '12345a' }).detail is 0 | 57 PASS new WheelEvent('eventType', { detail: '12345a' }).detail is 0 |
| 58 PASS new WheelEvent('eventType', { detail: 'abc' }).detail is 0 | 58 PASS new WheelEvent('eventType', { detail: 'abc' }).detail is 0 |
| 59 PASS new WheelEvent('eventType', { detail: [] }).detail is 0 | 59 PASS new WheelEvent('eventType', { detail: [] }).detail is 0 |
| 60 PASS new WheelEvent('eventType', { detail: [12345] }).detail is 12345 | 60 PASS new WheelEvent('eventType', { detail: [12345] }).detail is 12345 |
| 61 PASS new WheelEvent('eventType', { detail: [12345, 67890] }).detail is 0 | 61 PASS new WheelEvent('eventType', { detail: [12345, 67890] }).detail is 0 |
| 62 PASS new WheelEvent('eventType', { detail: {} }).detail is 0 | 62 PASS new WheelEvent('eventType', { detail: {} }).detail is 0 |
| 63 PASS new WheelEvent('eventType', { detail: {moemoe: 12345} }).detail is 0 | 63 PASS new WheelEvent('eventType', { detail: {moemoe: 12345} }).detail is 0 |
| 64 PASS new WheelEvent('eventType', { detail: {valueOf: function () { return 12345;
}} }).detail is 12345 | 64 PASS new WheelEvent('eventType', { detail: {valueOf: function () { return 12345;
}} }).detail is 12345 |
| 65 PASS new WheelEvent('eventType', { screenX: 0 }).screenX is 0 | 65 PASS new WheelEvent('eventType', { screenX: 0 }).screenX is 0 |
| 66 PASS new WheelEvent('eventType', { screenX: 2147483647 }).screenX is 2147483647 | 66 PASS new WheelEvent('eventType', { screenX: 2147483647 }).screenX is 33554431 |
| 67 PASS new WheelEvent('eventType', { screenX: -1 }).screenX is -1 | 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 -33554432 |
| 69 PASS new WheelEvent('eventType', { screenX: 4294967295 }).screenX is -1 | 69 PASS new WheelEvent('eventType', { screenX: 4294967295 }).screenX is 33554431 |
| 70 PASS new WheelEvent('eventType', { screenX: 9007199254740991 }).screenX is -1 | 70 PASS new WheelEvent('eventType', { screenX: 9007199254740991 }).screenX is 33554
431 |
| 71 PASS new WheelEvent('eventType', { screenX: 18446744073709551615 }).screenX is 0 | 71 PASS new WheelEvent('eventType', { screenX: 18446744073709551615 }).screenX is 3
3554431 |
| 72 PASS new WheelEvent('eventType', { screenX: 123.45 }).screenX is 123 | 72 PASS new WheelEvent('eventType', { screenX: 123.45 }).screenX is 123 |
| 73 PASS new WheelEvent('eventType', { screenX: NaN }).screenX is 0 | 73 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 | 74 PASS new WheelEvent('eventType', { screenX: undefined }).screenX is 0 |
| 75 PASS new WheelEvent('eventType', { screenX: null }).screenX is 0 | 75 PASS new WheelEvent('eventType', { screenX: null }).screenX is 0 |
| 76 PASS new WheelEvent('eventType', { screenX: '' }).screenX is 0 | 76 PASS new WheelEvent('eventType', { screenX: '' }).screenX is 0 |
| 77 PASS new WheelEvent('eventType', { screenX: '12345' }).screenX is 12345 | 77 PASS new WheelEvent('eventType', { screenX: '12345' }).screenX is 12345 |
| 78 PASS new WheelEvent('eventType', { screenX: '12345a' }).screenX is 0 | 78 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 | 79 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 | 80 PASS new WheelEvent('eventType', { screenX: [] }).screenX is 0 |
| 81 PASS new WheelEvent('eventType', { screenX: [12345] }).screenX is 12345 | 81 PASS new WheelEvent('eventType', { screenX: [12345] }).screenX is 12345 |
| 82 PASS new WheelEvent('eventType', { screenX: [12345, 67890] }).screenX is 0 | 82 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 | 83 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 | 84 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 | 85 PASS new WheelEvent('eventType', { screenX: {valueOf: function () { return 12345
; }} }).screenX is 12345 |
| 86 PASS new WheelEvent('eventType', { screenY: 0 }).screenY is 0 | 86 PASS new WheelEvent('eventType', { screenY: 0 }).screenY is 0 |
| 87 PASS new WheelEvent('eventType', { screenY: 2147483647 }).screenY is 2147483647 | 87 PASS new WheelEvent('eventType', { screenY: 2147483647 }).screenY is 33554431 |
| 88 PASS new WheelEvent('eventType', { screenY: -1 }).screenY is -1 | 88 PASS new WheelEvent('eventType', { screenY: -1 }).screenY is -1 |
| 89 PASS new WheelEvent('eventType', { screenY: -2147483648 }).screenY is -214748364
8 | 89 PASS new WheelEvent('eventType', { screenY: -2147483648 }).screenY is -33554432 |
| 90 PASS new WheelEvent('eventType', { screenY: 4294967295 }).screenY is -1 | 90 PASS new WheelEvent('eventType', { screenY: 4294967295 }).screenY is 33554431 |
| 91 PASS new WheelEvent('eventType', { screenY: 9007199254740991 }).screenY is -1 | 91 PASS new WheelEvent('eventType', { screenY: 9007199254740991 }).screenY is 33554
431 |
| 92 PASS new WheelEvent('eventType', { screenY: 18446744073709551615 }).screenY is 0 | 92 PASS new WheelEvent('eventType', { screenY: 18446744073709551615 }).screenY is 3
3554431 |
| 93 PASS new WheelEvent('eventType', { screenY: 123.45 }).screenY is 123 | 93 PASS new WheelEvent('eventType', { screenY: 123.45 }).screenY is 123 |
| 94 PASS new WheelEvent('eventType', { screenY: NaN }).screenY is 0 | 94 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 | 95 PASS new WheelEvent('eventType', { screenY: undefined }).screenY is 0 |
| 96 PASS new WheelEvent('eventType', { screenY: null }).screenY is 0 | 96 PASS new WheelEvent('eventType', { screenY: null }).screenY is 0 |
| 97 PASS new WheelEvent('eventType', { screenY: '' }).screenY is 0 | 97 PASS new WheelEvent('eventType', { screenY: '' }).screenY is 0 |
| 98 PASS new WheelEvent('eventType', { screenY: '12345' }).screenY is 12345 | 98 PASS new WheelEvent('eventType', { screenY: '12345' }).screenY is 12345 |
| 99 PASS new WheelEvent('eventType', { screenY: '12345a' }).screenY is 0 | 99 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 | 100 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 | 101 PASS new WheelEvent('eventType', { screenY: [] }).screenY is 0 |
| 102 PASS new WheelEvent('eventType', { screenY: [12345] }).screenY is 12345 | 102 PASS new WheelEvent('eventType', { screenY: [12345] }).screenY is 12345 |
| 103 PASS new WheelEvent('eventType', { screenY: [12345, 67890] }).screenY is 0 | 103 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 | 104 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 | 105 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 | 106 PASS new WheelEvent('eventType', { screenY: {valueOf: function () { return 12345
; }} }).screenY is 12345 |
| 107 PASS new WheelEvent('eventType', { clientX: 0 }).clientX is 0 | 107 PASS new WheelEvent('eventType', { clientX: 0 }).clientX is 0 |
| 108 PASS new WheelEvent('eventType', { clientX: 2147483647 }).clientX is 33554431 | 108 PASS new WheelEvent('eventType', { clientX: 2147483647 }).clientX is 33554431 |
| 109 PASS new WheelEvent('eventType', { clientX: -1 }).clientX is -1 | 109 PASS new WheelEvent('eventType', { clientX: -1 }).clientX is -1 |
| 110 PASS new WheelEvent('eventType', { clientX: -2147483648 }).clientX is -33554432 | 110 PASS new WheelEvent('eventType', { clientX: -2147483648 }).clientX is -33554432 |
| 111 PASS new WheelEvent('eventType', { clientX: 4294967295 }).clientX is -1 | 111 PASS new WheelEvent('eventType', { clientX: 4294967295 }).clientX is 33554431 |
| 112 PASS new WheelEvent('eventType', { clientX: 9007199254740991 }).clientX is -1 | 112 PASS new WheelEvent('eventType', { clientX: 9007199254740991 }).clientX is 33554
431 |
| 113 PASS new WheelEvent('eventType', { clientX: 18446744073709551615 }).clientX is 0 | 113 PASS new WheelEvent('eventType', { clientX: 18446744073709551615 }).clientX is 3
3554431 |
| 114 PASS new WheelEvent('eventType', { clientX: 123.45 }).clientX is 123 | 114 PASS new WheelEvent('eventType', { clientX: 123.45 }).clientX is 123 |
| 115 PASS new WheelEvent('eventType', { clientX: NaN }).clientX is 0 | 115 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 | 116 PASS new WheelEvent('eventType', { clientX: undefined }).clientX is 0 |
| 117 PASS new WheelEvent('eventType', { clientX: null }).clientX is 0 | 117 PASS new WheelEvent('eventType', { clientX: null }).clientX is 0 |
| 118 PASS new WheelEvent('eventType', { clientX: '' }).clientX is 0 | 118 PASS new WheelEvent('eventType', { clientX: '' }).clientX is 0 |
| 119 PASS new WheelEvent('eventType', { clientX: '12345' }).clientX is 12345 | 119 PASS new WheelEvent('eventType', { clientX: '12345' }).clientX is 12345 |
| 120 PASS new WheelEvent('eventType', { clientX: '12345a' }).clientX is 0 | 120 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 | 121 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 | 122 PASS new WheelEvent('eventType', { clientX: [] }).clientX is 0 |
| 123 PASS new WheelEvent('eventType', { clientX: [12345] }).clientX is 12345 | 123 PASS new WheelEvent('eventType', { clientX: [12345] }).clientX is 12345 |
| 124 PASS new WheelEvent('eventType', { clientX: [12345, 67890] }).clientX is 0 | 124 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 | 125 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 | 126 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 | 127 PASS new WheelEvent('eventType', { clientX: {valueOf: function () { return 12345
; }} }).clientX is 12345 |
| 128 PASS new WheelEvent('eventType', { clientY: 0 }).clientY is 0 | 128 PASS new WheelEvent('eventType', { clientY: 0 }).clientY is 0 |
| 129 PASS new WheelEvent('eventType', { clientY: 2147483647 }).clientY is 33554431 | 129 PASS new WheelEvent('eventType', { clientY: 2147483647 }).clientY is 33554431 |
| 130 PASS new WheelEvent('eventType', { clientY: -1 }).clientY is -1 | 130 PASS new WheelEvent('eventType', { clientY: -1 }).clientY is -1 |
| 131 PASS new WheelEvent('eventType', { clientY: -2147483648 }).clientY is -33554432 | 131 PASS new WheelEvent('eventType', { clientY: -2147483648 }).clientY is -33554432 |
| 132 PASS new WheelEvent('eventType', { clientY: 4294967295 }).clientY is -1 | 132 PASS new WheelEvent('eventType', { clientY: 4294967295 }).clientY is 33554431 |
| 133 PASS new WheelEvent('eventType', { clientY: 9007199254740991 }).clientY is -1 | 133 PASS new WheelEvent('eventType', { clientY: 9007199254740991 }).clientY is 33554
431 |
| 134 PASS new WheelEvent('eventType', { clientY: 18446744073709551615 }).clientY is 0 | 134 PASS new WheelEvent('eventType', { clientY: 18446744073709551615 }).clientY is 3
3554431 |
| 135 PASS new WheelEvent('eventType', { clientY: 123.45 }).clientY is 123 | 135 PASS new WheelEvent('eventType', { clientY: 123.45 }).clientY is 123 |
| 136 PASS new WheelEvent('eventType', { clientY: NaN }).clientY is 0 | 136 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 | 137 PASS new WheelEvent('eventType', { clientY: undefined }).clientY is 0 |
| 138 PASS new WheelEvent('eventType', { clientY: null }).clientY is 0 | 138 PASS new WheelEvent('eventType', { clientY: null }).clientY is 0 |
| 139 PASS new WheelEvent('eventType', { clientY: '' }).clientY is 0 | 139 PASS new WheelEvent('eventType', { clientY: '' }).clientY is 0 |
| 140 PASS new WheelEvent('eventType', { clientY: '12345' }).clientY is 12345 | 140 PASS new WheelEvent('eventType', { clientY: '12345' }).clientY is 12345 |
| 141 PASS new WheelEvent('eventType', { clientY: '12345a' }).clientY is 0 | 141 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 | 142 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 | 143 PASS new WheelEvent('eventType', { clientY: [] }).clientY is 0 |
| 144 PASS new WheelEvent('eventType', { clientY: [12345] }).clientY is 12345 | 144 PASS new WheelEvent('eventType', { clientY: [12345] }).clientY is 12345 |
| 145 PASS new WheelEvent('eventType', { clientY: [12345, 67890] }).clientY is 0 | 145 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 | 146 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 | 147 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 | 148 PASS new WheelEvent('eventType', { clientY: {valueOf: function () { return 12345
; }} }).clientY is 12345 |
| 149 PASS new WheelEvent('eventType', { wheelDeltaX: 0 }).wheelDeltaX is 0 | 149 PASS new WheelEvent('eventType', { wheelDeltaX: 0 }).wheelDeltaX is 0 |
| 150 PASS new WheelEvent('eventType', { wheelDeltaX: 2147483647 }).wheelDeltaX is 214
7483647 | 150 PASS new WheelEvent('eventType', { wheelDeltaX: 2147483647 }).wheelDeltaX is 214
7483647 |
| 151 PASS new WheelEvent('eventType', { wheelDeltaX: -1 }).wheelDeltaX is -1 | 151 PASS new WheelEvent('eventType', { wheelDeltaX: -1 }).wheelDeltaX is -1 |
| 152 PASS new WheelEvent('eventType', { wheelDeltaX: -2147483648 }).wheelDeltaX is -2
147483648 | 152 PASS new WheelEvent('eventType', { wheelDeltaX: -2147483648 }).wheelDeltaX is -2
147483648 |
| 153 PASS new WheelEvent('eventType', { wheelDeltaX: 4294967295 }).wheelDeltaX is -1 | 153 PASS new WheelEvent('eventType', { wheelDeltaX: 4294967295 }).wheelDeltaX is -1 |
| 154 PASS new WheelEvent('eventType', { wheelDeltaX: 9007199254740991 }).wheelDeltaX
is -1 | 154 PASS new WheelEvent('eventType', { wheelDeltaX: 9007199254740991 }).wheelDeltaX
is -1 |
| 155 PASS new WheelEvent('eventType', { wheelDeltaX: 18446744073709551615 }).wheelDel
taX is 0 | 155 PASS new WheelEvent('eventType', { wheelDeltaX: 18446744073709551615 }).wheelDel
taX is 0 |
| 156 PASS new WheelEvent('eventType', { wheelDeltaX: 123.45 }).wheelDeltaX is 123 | 156 PASS new WheelEvent('eventType', { wheelDeltaX: 123.45 }).wheelDeltaX is 123 |
| 157 PASS new WheelEvent('eventType', { wheelDeltaX: NaN }).wheelDeltaX is 0 | 157 PASS new WheelEvent('eventType', { wheelDeltaX: NaN }).wheelDeltaX is 0 |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 | 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 |
| 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 | 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 |
| 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 | 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 |
| 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 | 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 |
| 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 | 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 |
| 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 | 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 |
| 348 PASS successfullyParsed is true | 348 PASS successfullyParsed is true |
| 349 | 349 |
| 350 TEST COMPLETE | 350 TEST COMPLETE |
| 351 | 351 |
| OLD | NEW |