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
|
QUnit.test('events#cropstart', function (assert) {
var done = assert.async();
var util = window.Util;
var image = util.createImage();
assert.expect(1);
image.addEventListener('ready', function () {
var PointerEvent = window.PointerEvent;
var cropper = this.cropper;
util.dispatchEvent(cropper.dragBox, PointerEvent ? 'pointerdown' : 'mousedown');
util.dispatchEvent(cropper.dragBox, PointerEvent ? 'pointerup' : 'mouseup');
done();
});
image.addEventListener('cropstart', function (e) {
assert.strictEqual(e.detail.action, 'crop');
});
return new Cropper(image);
});
QUnit.test('events#cropstart: default prevented', function (assert) {
var done = assert.async();
var util = window.Util;
var image = util.createImage();
assert.expect(0);
image.addEventListener('ready', function () {
var PointerEvent = window.PointerEvent;
var cropper = this.cropper;
util.dispatchEvent(cropper.dragBox, PointerEvent ? 'pointerdown' : 'mousedown');
util.dispatchEvent(cropper.dragBox, PointerEvent ? 'pointermove' : 'mousemove');
util.dispatchEvent(cropper.dragBox, PointerEvent ? 'pointerup' : 'mouseup');
done();
});
image.addEventListener('cropstart', function (e) {
e.preventDefault();
});
image.addEventListener('cropmove', function () {
assert.ok(false);
});
image.addEventListener('cropend', function () {
assert.ok(false);
});
return new Cropper(image);
});
|