forked from jquery/jquery-mousewheel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunit.js
92 lines (69 loc) · 2.88 KB
/
unit.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
"use strict";
QUnit.module( "mousewheel" );
var modernEvents = !!jQuery.fn.on,
on = modernEvents ? "on" : "bind";
function makeWheelEvent( deltaX, deltaY ) {
var event = window.document.createEvent( "Event" );
event.initEvent( "wheel", true, true );
event.deltaX = deltaX;
event.deltaY = deltaY;
event.deltaMode = 0;
return event;
}
QUnit.test( ".on() and .trigger()", function( assert ) {
assert.expect( 1 );
var markup = jQuery( "<div>wheelme</div>" ).appendTo( "body" );
markup[ on ]( "mousewheel", function( e ) {
assert.ok( true, "triggered a mousewheel event on " + e.target.innerText );
} );
markup.trigger( "mousewheel" );
markup.remove();
} );
QUnit.test( ".mousewheel() shorthand", function( assert ) {
assert.expect( 1 );
var markup = jQuery( "<p>wheelme</p>" ).appendTo( "body" );
markup.mousewheel( function( e ) {
assert.ok( true, "triggered a mousewheel event on " + e.target.innerText );
} );
markup.mousewheel();
// Should not trigger another event
markup.unmousewheel();
markup.mousewheel();
markup.remove();
} );
QUnit.test( "natively triggered events", function( assert ) {
assert.expect( 6 );
var markup = jQuery( "<p>wheelme</p>" ).appendTo( "body" );
markup[ on ]( "mousewheel", function( e ) {
assert.ok( true, "triggered a mousewheel event on " + e.target.innerText );
assert.ok( "deltaX" in e, "got a deltaX in the event" );
assert.ok( !isNaN( parseFloat( e.deltaY ) ), "deltaY is a number: " + e.deltaY );
} );
// First wheel event "calibrates" so we won't measure this one
var event1 = makeWheelEvent( 0, 2.2 );
markup[ 0 ].dispatchEvent( event1 );
var event2 = makeWheelEvent( 0, 10.528 );
markup[ 0 ].dispatchEvent( event2 );
markup.remove();
} );
QUnit.test( "mouse event properties are passed through", function( assert ) {
assert.expect( 4 );
var markup = jQuery( "<p>wheelme</p>" ).appendTo( "body" );
markup[ on ]( "mousewheel", function( e ) {
var org = e.originalEvent;
assert.equal( org.clientX, 342, "original event has clientX: " + org.clientX );
assert.equal( org.clientY, 301, "original event has clientY: " + org.clientY );
assert.ok( e.offsetX < org.clientX, "got plausible offsetX in the event: " + e.offsetX );
assert.ok( e.offsetY < org.clientY, "got plausible offsetY in the event: " + e.offsetY );
} );
// Not sure why this property is manipulating offsetX/Y but the behavior cannot
// change in a minor version so it will stay since it's set to true right now.
// For testing we just want to ensure that the properties get through.
var event1 = makeWheelEvent( 0, 2.2 );
event1.offsetX = 1;
event1.offsetY = 2;
event1.clientX = 342;
event1.clientY = 301;
markup[ 0 ].dispatchEvent( event1 );
markup.remove();
} );