summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/general/test_clipboard_events.html
blob: eb8e0258fc200ab1f60ba196ea84a65957d6f897 (plain)
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
<!DOCTYPE HTML>
<html>
<head>
  <title>Test for Clipboard Events</title>
  <script type="text/javascript" src="/MochiKit/MochiKit.js"></script>
  <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="application/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<p id="display"></p>
<div id="content" style="border: 3px solid black; padding: 3em;">CONTENT TEXT<input id="content-input" value="INPUT TEXT"></div>
<img id="image" src="image_50.png">
<button id="button">Button</button>

<div id="syntheticSpot" oncut="compareSynthetic(event, 'cut')"
                        oncopy="compareSynthetic(event, 'copy')"
                        onpaste="compareSynthetic(event, 'paste')">Spot</div>

<pre id="test">
<script class="testbody" type="text/javascript;version=1.7">

var content = document.getElementById("content");
var contentInput = document.getElementById("content-input");
var clipboardInitialValue = "empty";

// Test that clearing and reading the clipboard works.  A random number
// is used to make sure that leftover clipboard values from a previous
// test run don't cause a false-positive test.
var cb_text = "empty_" + Math.random();
setClipboardText(cb_text);

is(getClipboardText(), cb_text, "set/get clipboard text failed");

var cachedCutData, cachedCopyData, cachedPasteData;

// A list of test functions to run.  Before each test function is run, the
// clipboard is initialized to clipboardInitialValue, and the contents of
// div#content are set as the window's selection.
var testFunctions = [
  test_dom_oncopy,
  test_dom_oncut,
  test_dom_onpaste,
  test_dom_oncopy_abort,
  test_input_oncopy,
  test_input_oncut,
  test_input_onpaste,
  test_input_oncopy_abort,
  test_input_oncut_abort,
  test_input_onpaste_abort,
  test_input_cut_dataTransfer,
  test_input_cut_abort_dataTransfer,
  test_input_copy_dataTransfer,
  test_input_paste_dataTransfer,
  test_input_paste_abort_dataTransfer,
  test_input_copypaste_dataTransfer_multiple,
  test_input_copy_button_dataTransfer,
  test_eventspref_disabled,
  test_image_dataTransfer,
  ];

function doTests()
{
  // Init clipboard
  setClipboardText(clipboardInitialValue);

  // Reset value of contentInput.
  contentInput.value = "INPUT TEXT";

  if (testFunctions.length) {
    let func = testFunctions.shift();
    let result = func();
    if (result instanceof Promise) {
      result.then(doTests);
    }
    else {
      doTests();
    }
  }
  else {
    // Check if the cached clipboard data can be accessed or modified
    // and whether it modifies the real clipboard
    checkCachedDataTransfer(cachedCutData, "cut");
    checkCachedDataTransfer(cachedCopyData, "copy");
    checkCachedDataTransfer(cachedPasteData, "paste");

    checkSyntheticEvents();

    SimpleTest.finish();
  }
}

SimpleTest.waitForExplicitFinish();

function getClipboardText() {
  return SpecialPowers.getClipboardData("text/unicode");
}


function setClipboardText(text) {
  var helper = SpecialPowers.Cc["@mozilla.org/widget/clipboardhelper;1"]
    .getService(SpecialPowers.Ci.nsIClipboardHelper);
  helper.copyString(text);
}

function selectContentDiv() {
  // Set selection
  var selection = window.getSelection();
  selection.removeAllRanges();
  selection.selectAllChildren(content);
}

function selectContentInput() {
  contentInput.select();
  contentInput.focus();
}

function test_dom_oncopy() {
  // Setup an oncopy event handler, fire copy.  Ensure that the event
  // handler was called, and the clipboard contents have set to CONTENT TEXT.
  // Test firing oncopy event on ctrl-c:
  selectContentDiv();
  
  var oncopy_fired = false;
  content.oncopy = function() { oncopy_fired = true; };
  try {
    synthesizeKey("c", {accelKey: 1});
    ok(oncopy_fired, "copy event firing on DOM element");
    is(getClipboardText(), "CONTENT TEXT",
      "copy on DOM element set clipboard correctly");
  } finally {
    content.oncopy = null;
  }
}

function test_dom_oncut() {
  // Setup an oncut event handler, fire cut.  Ensure that the event handler
  // was called.  The <div> doesn't handle a cut, so ensure that the
  // clipboard text is clipboardInitialValue, NOT "CONTENT TEXT".
  selectContentDiv();
  var oncut_fired = false;
  content.oncut = function() { oncut_fired = true; };
  try {
    synthesizeKey("x", {accelKey: 1});
    ok(oncut_fired, "cut event firing on DOM element")
    is(getClipboardText(), clipboardInitialValue,
      "cut on DOM element did not modify clipboard");
  } finally {
    content.oncut = null;
  }
}


function test_dom_onpaste() {
  // Setup an onpaste event handler, fire paste.  Ensure that the event
  // handler was called.
  selectContentDiv();
  var onpaste_fired = false;
  content.onpaste = function() { onpaste_fired = true; };
  try {
    synthesizeKey("v", {accelKey: 1});
    ok(onpaste_fired, "paste event firing on DOM element");
  } finally {
    content.onpaste = null;
  }
}


function test_dom_oncopy_abort() {
  // Setup an oncopy event handler that aborts the copy, and fire the copy
  // event.  Ensure that the event handler was fired, and the clipboard
  // contents have not been modified.
  selectContentDiv();
  var oncopy_fired = false;
  content.oncopy = function() { oncopy_fired = true; return false; };
  try {
    synthesizeKey("c", {accelKey: 1});
    ok(oncopy_fired, "copy event (to-be-cancelled) firing on DOM element");
    is(getClipboardText(), clipboardInitialValue,
      "aborted copy on DOM element did not modify clipboard");
  } finally {
    content.oncopy = null;
  }
}


function test_input_oncopy() {
  // Setup an oncopy event handler, fire copy.  Ensure that the event
  // handler was called, and the clipboard contents have been set to 'PUT TE',
  // which is the part that is selected below.
  selectContentInput();
  contentInput.focus();
  contentInput.setSelectionRange(2, 8);

  var oncopy_fired = false;
  contentInput.oncopy = function() { oncopy_fired = true; };
  try {
    synthesizeKey("c", {accelKey: 1});
    ok(oncopy_fired, "copy event firing on plaintext editor");
    is(getClipboardText(), "PUT TE",
      "copy on plaintext editor set clipboard correctly");
  } finally {
    contentInput.oncopy = null;
  }
}


function test_input_oncut() {
  // Setup an oncut event handler, and fire cut.  Ensure that the event
  // handler was fired, the clipboard contains the INPUT TEXT, and
  // that the input itself is empty.
  selectContentInput();
  var oncut_fired = false;
  contentInput.oncut = function() { oncut_fired = true; };
  try {
    synthesizeKey("x", {accelKey: 1});
    ok(oncut_fired, "cut event firing on plaintext editor");
    is(getClipboardText(), "INPUT TEXT",
      "cut on plaintext editor set clipboard correctly");
    is(contentInput.value, "",
      "cut on plaintext editor emptied editor");
  } finally {
    contentInput.oncut = null;
  }
}


function test_input_onpaste() {
  // Setup an onpaste event handler, and fire paste.  Ensure that the event
  // handler was fired, the clipboard contents didn't change, and that the
  // input value did change (ie. paste succeeded).
  selectContentInput();
  var onpaste_fired = false;
  contentInput.onpaste = function() { onpaste_fired = true; };
  try {
    synthesizeKey("v", {accelKey: 1});
    ok(onpaste_fired, "paste event firing on plaintext editor");
    is(getClipboardText(), clipboardInitialValue,
      "paste on plaintext editor did not modify clipboard contents");
    is(contentInput.value, clipboardInitialValue,
      "paste on plaintext editor did modify editor value");
  } finally {
    contentInput.onpaste = null;
  }
}


function test_input_oncopy_abort() {
  // Setup an oncopy event handler, fire copy.  Ensure that the event
  // handler was called, and that the clipboard value did NOT change.
  selectContentInput();
  var oncopy_fired = false;
  contentInput.oncopy = function() { oncopy_fired = true; return false; };
  try {
    synthesizeKey("c", {accelKey: 1});
    ok(oncopy_fired, "copy event (to-be-cancelled) firing on plaintext editor");
    is(getClipboardText(), clipboardInitialValue,
      "aborted copy on plaintext editor did not modify clipboard");
  } finally {
    contentInput.oncopy = null;
  }
}


function test_input_oncut_abort() {
  // Setup an oncut event handler, and fire cut.  Ensure that the event
  // handler was fired, the clipboard contains the INPUT TEXT, and
  // that the input itself is empty.
  selectContentInput();
  var oncut_fired = false;
  contentInput.oncut = function() { oncut_fired = true; return false; };
  try {
    synthesizeKey("x", {accelKey: 1});
    ok(oncut_fired, "cut event (to-be-cancelled) firing on plaintext editor");
    is(getClipboardText(), clipboardInitialValue,
      "aborted cut on plaintext editor did not modify clipboard.");
    is(contentInput.value, "INPUT TEXT",
      "aborted cut on plaintext editor did not modify editor contents");
  } finally {
    contentInput.oncut = null;
  }
}


function test_input_onpaste_abort() {
  // Setup an onpaste event handler, and fire paste.  Ensure that the event
  // handler was fired, the clipboard contents didn't change, and that the
  // input value did change (ie. paste succeeded).
  selectContentInput();
  var onpaste_fired = false;
  contentInput.onpaste = function() { onpaste_fired = true; return false; };
  try {
    synthesizeKey("v", {accelKey: 1});
    ok(onpaste_fired,
      "paste event (to-be-cancelled) firing on plaintext editor");
    is(getClipboardText(), clipboardInitialValue,
      "aborted paste on plaintext editor did not modify clipboard");
    is(contentInput.value, "INPUT TEXT",
      "aborted paste on plaintext editor did not modify modified editor value");
  } finally {
    contentInput.onpaste = null;
  }
}


function test_input_cut_dataTransfer() {
  // Cut using event.dataTransfer. The event is not cancelled so the default
  // cut should occur
  selectContentInput();
  contentInput.oncut = function(event) {
    ok(event instanceof ClipboardEvent, "cut event is a ClipboardEvent");
    ok(event.clipboardData instanceof DataTransfer, "cut event dataTransfer is a DataTransfer");
    is(event.target, contentInput, "cut event target");
    is(event.clipboardData.mozItemCount, 0, "cut event mozItemCount");
    is(event.clipboardData.getData("text/plain"), "", "cut event getData");
    event.clipboardData.setData("text/plain", "This is some dataTransfer text");
    cachedCutData = event.clipboardData;
  };
  try {
    synthesizeKey("x", {accelKey: 1});
    is(getClipboardText(), "INPUT TEXT",
      "cut using dataTransfer on plaintext editor set clipboard correctly");
    is(contentInput.value, "",
      "cut using dataTransfer on plaintext editor cleared input");
  } finally {
    contentInput.oncut = null;
  }
}


function test_input_cut_abort_dataTransfer() {
  // Cut using event.dataTransfer but cancel the event. The data should be
  // put on the clipboard but since we don't modify the input value, the input
  // should have the same value.
  selectContentInput();
  contentInput.oncut = function(event) {
    event.clipboardData.setData("text/plain", "Cut dataTransfer text");
    return false;
  };
  try {
    synthesizeKey("x", {accelKey: 1});
    is(getClipboardText(), "Cut dataTransfer text",
      "aborted cut using dataTransfer on plaintext editor set clipboard correctly");
    is(contentInput.value, "INPUT TEXT",
      "aborted cut using dataTransfer on plaintext editor did not modify input");
  } finally {
    contentInput.oncut = null;
  }
}


function test_input_copy_dataTransfer() {
  // Copy using event.dataTransfer
  selectContentInput();
  contentInput.oncopy = function(event) {
    ok(event instanceof ClipboardEvent, "copy event is a ClipboardEvent");
    ok(event.clipboardData instanceof DataTransfer, "copy event dataTransfer is a DataTransfer");
    is(event.target, contentInput, "copy event target");
    is(event.clipboardData.mozItemCount, 0, "copy event mozItemCount");
    is(event.clipboardData.getData("text/plain"), "", "copy event getData");
    event.clipboardData.setData("text/plain", "Copied dataTransfer text");
    cachedCopyData = event.clipboardData;
  };
  try {
    synthesizeKey("c", {accelKey: 1});
    is(getClipboardText(), "INPUT TEXT",
      "copy using dataTransfer on plaintext editor set clipboard correctly");
    is(contentInput.value, "INPUT TEXT",
      "copy using dataTransfer on plaintext editor did not modify input");
  } finally {
    contentInput.oncopy = null;
  }
}


function test_input_copy_abort_dataTransfer() {
  // Copy using event.dataTransfer but cancel the event.
  selectContentInput();
  contentInput.oncopy = function(event) {
    event.clipboardData.setData("text/plain", "Copy dataTransfer text");
    return false;
  };
  try {
    synthesizeKey("x", {accelKey: 1});
    is(getClipboardText(), "Copy dataTransfer text",
      "aborted copy using dataTransfer on plaintext editor set clipboard correctly");
    is(contentInput.value, "INPUT TEXT",
      "aborted copy using dataTransfer on plaintext editor did not modify input");
  } finally {
    contentInput.oncopy = null;
  }
}


function test_input_paste_dataTransfer() {
  // Paste using event.dataTransfer
  selectContentInput();
  contentInput.onpaste = function(event) {
    ok(event instanceof ClipboardEvent, "paste event is an ClipboardEvent");
    ok(event.clipboardData instanceof DataTransfer, "paste event dataTransfer is a DataTransfer");
    is(event.target, contentInput, "paste event target");
    is(event.clipboardData.mozItemCount, 1, "paste event mozItemCount");
    is(event.clipboardData.getData("text/plain"), clipboardInitialValue, "paste event getData");
    cachedPasteData = event.clipboardData;
  };
  try {
    synthesizeKey("v", {accelKey: 1});
    is(getClipboardText(), clipboardInitialValue,
      "paste using dataTransfer on plaintext editor did not modify clipboard contents");
    is(contentInput.value, clipboardInitialValue,
      "paste using dataTransfer on plaintext editor modified input");
  } finally {
    contentInput.onpaste = null;
  }
}


function test_input_paste_abort_dataTransfer() {
  // Paste using event.dataTransfer but cancel the event
  selectContentInput();
  contentInput.onpaste = function(event) {
    is(event.clipboardData.getData("text/plain"), clipboardInitialValue, "get data on aborted paste");
    contentInput.value = "Alternate Paste";
    return false;
  };
  try {
    synthesizeKey("v", {accelKey: 1});
    is(getClipboardText(), clipboardInitialValue,
      "aborted paste using dataTransfer on plaintext editor did not modify clipboard contents");
    is(contentInput.value, "Alternate Paste",
      "aborted paste using dataTransfer on plaintext editor modified input");
  } finally {
    contentInput.onpaste = null;
  }
}

function test_input_copypaste_dataTransfer_multiple() {
  // Cut several types of data and paste it again
  contentInput.value = "This is a line of text";
  contentInput.oncopy = function(event) {
    var cd = event.clipboardData;
    cd.setData("text/plain", "would be a phrase");

    var exh = false;
    try { cd.mozSetDataAt("text/plain", "Text", 1); } catch (ex) { exh = true; }
    ok(exh, "exception occured mozSetDataAt 1");
    exh = false;
    try { cd.mozTypesAt(1); } catch (ex) { exh = true; }
    ok(exh, "exception occured mozTypesAt 1");
    exh = false;
    try { cd.mozGetDataAt("text/plain", 1); } catch (ex) { exh = true; }
    ok(exh, "exception occured mozGetDataAt 1");
    exh = false;
    try { cd.mozClearDataAt("text/plain", 1); } catch (ex) { exh = true; }
    ok(exh, "exception occured mozClearDataAt 1");

    cd.setData("text/x-moz-url", "http://www.mozilla.org");
    cd.mozSetDataAt("text/x-custom", "Custom Text with \u0000 null", 0);
    is(cd.mozItemCount, 1, "mozItemCount after set multiple types");
    return false;
  };

  try {
    selectContentInput();
    synthesizeKey("c", {accelKey: 1});
  }
  finally {
    contentInput.oncopy = null;
  }

  is(getClipboardText(), "would be a phrase", "copy multiple types text");

  contentInput.setSelectionRange(5, 14);

  contentInput.onpaste = function(event) {
    var cd = event.clipboardData;
    is(cd.mozItemCount, 1, "paste after copy multiple types mozItemCount");
    is(cd.getData("text/plain"), "would be a phrase", "paste text/plain multiple types");

    // Firefox for Android's clipboard code doesn't handle x-moz-url. Therefore
    // disabling the following test. Enable this once bug #840101 is fixed.
    if (navigator.appVersion.indexOf("Android") == -1) {
      is(cd.getData("text/x-moz-url"), "http://www.mozilla.org", "paste text/x-moz-url multiple types");
      is(cd.getData("text/x-custom"), "Custom Text with \u0000 null", "paste text/custom multiple types");
    } else {
      is(cd.getData("text/x-custom"), "", "paste text/custom multiple types");
    }

    is(cd.getData("application/x-moz-custom-clipdata"), "", "application/x-moz-custom-clipdata is not present");

    exh = false;
    try { cd.setData("application/x-moz-custom-clipdata", "Some Data"); } catch (ex) { exh = true; }
    ok(exh, "exception occured setData with application/x-moz-custom-clipdata");

    exh = false;
    try { cd.setData("text/plain", "Text on Paste"); } catch (ex) { exh = true; }
    ok(exh, "exception occured setData on paste");

    is(cd.getData("text/plain"), "would be a phrase", "text/plain data unchanged");
  };
  try {
    synthesizeKey("v", {accelKey: 1});
    is(contentInput.value, "This would be a phrase of text",
      "default paste after copy multiple types");
  } finally {
    contentInput.onpaste = null;
  }
}

function test_input_copy_button_dataTransfer() {
  // Copy using event.dataTransfer when a button is focused.
  var button = document.getElementById("button");
  button.focus();
  button.oncopy = function(event) {
    ok(false, "should not be firing copy event on button");
    return false;
  };
  try {
    // copy should not occur here because buttons don't have any controller
    // for the copy command
    synthesizeKey("c", {accelKey: 1});
    is(getClipboardText(), clipboardInitialValue,
      "copy using dataTransfer on plaintext editor set clipboard correctly for button");

    selectContentDiv();
    synthesizeKey("c", {accelKey: 1});
    is(getClipboardText(), "CONTENT TEXT",
      "copy using dataTransfer with selection on plaintext editor set clipboard correctly for button");

  } finally {
    document.documentElement.oncopy = null;
  }
}

function test_eventspref_disabled() {
  // Disable clipboard events
  return new Promise(resolve => {
    SpecialPowers.pushPrefEnv({"set": [['dom.event.clipboardevents.enabled', false]]}, doPrefDisabledTest);

    function doPrefDisabledTest() {
      var event_fired = false;
      contentInput.oncut = function() { event_fired = true; };
      contentInput.oncopy = function() { event_fired = true; };
      contentInput.onpaste = function() { event_fired = true; };
      try {
        selectContentInput();
        contentInput.setSelectionRange(1, 4);
        synthesizeKey("x", {accelKey: 1});
        is(contentInput.value, "IT TEXT", "cut changed text when preference is disabled");
        is(getClipboardText(), "NPU", "cut changed clipboard when preference is disabled");
        ok(!event_fired, "cut event did not fire when preference is disabled")

        event_fired = false;
        contentInput.setSelectionRange(3, 6);
        synthesizeKey("c", {accelKey: 1});
        is(getClipboardText(), "TEX", "copy changed clipboard when preference is disabled");
        ok(!event_fired, "copy event did not fire when preference is disabled")

        event_fired = false;
        contentInput.setSelectionRange(0, 2);
        synthesizeKey("v", {accelKey: 1});
        is(contentInput.value, "TEX TEXT", "paste changed text when preference is disabled");
        ok(!event_fired, "paste event did not fire when preference is disabled")
      } finally {
        contentInput.oncut = null;
        contentInput.oncopy = null;
        contentInput.onpaste = null;
      }

      SpecialPowers.popPrefEnv(resolve);
    }
  });
}

let expectedData = [];

// Check to make that synthetic events do not change the clipboard
function checkSyntheticEvents()
{
  let syntheticSpot = document.getElementById("syntheticSpot");
  setClipboardText(clipboardInitialValue);

  // No dataType specified
  let event = new ClipboardEvent("cut", { data: "something" });
  expectedData = { type: "cut", data: null }
  compareSynthetic(event, "before");
  syntheticSpot.dispatchEvent(event);
  ok(expectedData.eventFired, "cut event fired");
  compareSynthetic(event, "after");

  event = new ClipboardEvent("cut", { dataType: "text/plain", data: "something" });
  expectedData = { type: "cut", dataType: "text/plain", data: "something" }
  compareSynthetic(event, "before");
  syntheticSpot.dispatchEvent(event);
  ok(expectedData.eventFired, "cut event fired");
  compareSynthetic(event, "after");

  event = new ClipboardEvent("copy", { dataType: "text/plain", data: "something" });
  expectedData = { type: "copy", dataType: "text/plain", data: "something" }
  compareSynthetic(event, "before");
  syntheticSpot.dispatchEvent(event);
  ok(expectedData.eventFired, "copy event fired");
  compareSynthetic(event, "after");

  event = new ClipboardEvent("copy", { dataType: "text/plain" });
  expectedData = { type: "copy", dataType: "text/plain", data: "" }
  compareSynthetic(event, "before");
  syntheticSpot.dispatchEvent(event);
  ok(expectedData.eventFired, "copy event fired");
  compareSynthetic(event, "after");

  event = new ClipboardEvent("paste", { dataType: "text/plain", data: "something" });
  expectedData = { type: "paste", dataType: "text/plain", data: "something" }
  compareSynthetic(event, "before");
  syntheticSpot.dispatchEvent(event);
  ok(expectedData.eventFired, "paste event fired");
  compareSynthetic(event, "after");

  event = new ClipboardEvent("paste", { dataType: "application/unknown", data: "unknown" });
  expectedData = { type: "paste", dataType: "application/unknown", data: "unknown" }
  compareSynthetic(event, "before");
  syntheticSpot.dispatchEvent(event);
  ok(expectedData.eventFired, "paste event fired");
  compareSynthetic(event, "after");
}

function compareSynthetic(event, eventtype)
{
  let step = (eventtype == "cut" || eventtype == "copy" || eventtype == "paste") ? "during" : eventtype;
  if (step == "during") {
    is(eventtype, expectedData.type, "synthetic " + eventtype + " event fired");
  }

  ok(event.clipboardData instanceof DataTransfer, "clipboardData is assigned");

  is(event.type, expectedData.type, "synthetic " + eventtype + " event type");
  if (expectedData.data === null) {
    is(event.clipboardData.mozItemCount, 0, "synthetic " + eventtype + " empty data");
  }
  else {
    is(event.clipboardData.mozItemCount, 1, "synthetic " + eventtype + " item count");
    is(event.clipboardData.types.length, 1, "synthetic " + eventtype + " types length");
    is(event.clipboardData.getData(expectedData.dataType), expectedData.data,
       "synthetic " + eventtype + " data");
  }

  is(getClipboardText(), "empty", "event does not change the clipboard " + step + " dispatch");

  if (step == "during") {
    expectedData.eventFired = true;
  }
}

function checkCachedDataTransfer(cd, eventtype)
{
  var testprefix = "cached " + eventtype + " dataTransfer";

  setClipboardText("Some Clipboard Text");

  var oldtext = cd.getData("text/plain");
  ok(oldtext != "Some Clipboard Text", "clipboard get using " + testprefix);

  var exh = false;
  try { cd.mozSetDataAt("text/plain", "Test Cache Data", 0); } catch (ex) { exh = true; }
  ok(eventtype == "paste" ? exh : !exh, "exception occured setting " + testprefix);

  var newtext = (eventtype == "paste") ? cd.getData("text/plain") :
                                         cd.mozGetDataAt("text/plain", 0);
  is(newtext, (eventtype == "paste") ? oldtext : "Test Cache Data",
     " clipboardData not changed using " + testprefix);

  is(getClipboardText(), "Some Clipboard Text", "clipboard not changed using " + testprefix);

  var exh = false;
  try { cd.mozClearDataAt("text/plain", 0); } catch (ex) { exh = true; }
  ok(eventtype == "paste" ? exh : !exh, "exception occured clearing " + testprefix);

  is(getClipboardText(), "Some Clipboard Text", "clipboard not changed using " + testprefix);
}

// Try copying an image to the clipboard and make sure that it looks correct when pasting it.
function test_image_dataTransfer() {
  // cmd_copyImageContents errors on Android (bug 1299578).
  if (navigator.userAgent.includes("Android")) {
    return;
  }

  // Copy the image's data to the clipboard
  SpecialPowers.setCommandNode(window, document.getElementById("image"));
  SpecialPowers.doCommand(window, "cmd_copyImageContents");

  let onpasteCalled = false;
  document.onpaste = function(event) {
    ok(event instanceof ClipboardEvent, "paste event is an ClipboardEvent");
    ok(event.clipboardData instanceof DataTransfer, "paste event dataTransfer is a DataTransfer");
    let items = event.clipboardData.items;
    let foundData = false;
    for (let i = 0; i < items.length; ++i)  {
      if (items[i].kind == "file") {
        foundData = true;
        is(items[i].type, "image/png", "The type of the data must be image/png");
        is(items[i].getAsFile().type, "image/png", "The attached file must be image/png");
      }
    }
    ok(foundData, "Should have found a file entry in the DataTransferItemList");
    let files = event.clipboardData.files;
    is(files.length, 1, "There should only be one file on the DataTransfer");
    is(files[0].type, "image/png", "The only file should be an image/png");
    onpasteCalled = true;
  }

  try {
    synthesizeKey("v", {accelKey: 1});
    ok(onpasteCalled, "The paste event listener must have been called");
  } finally {
    document.onpaste = null;
  }
}

SimpleTest.waitForFocus(doTests);

</script>
</pre>
</body>
</html>