summaryrefslogtreecommitdiffstats
path: root/dom/base/test/test_copypaste.xul
blob: 6c14c73575fe92e0d8169761f86cec248591c517 (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
<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="chrome://global/skin"?>
<?xml-stylesheet type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css"?>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=888839
-->
<window title="Mozilla Bug 888839"
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  <script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"/>

  <script type="application/javascript"><![CDATA[

var { classes: Cc, interfaces: Ci } = Components;

SimpleTest.waitForExplicitFinish();
addLoadEvent(runTest);

function runTest() {
  let desc = document.querySelector("description");
  window.getSelection().selectAllChildren(desc);

  let webnav = window.
               QueryInterface(Ci.nsIInterfaceRequestor).
               getInterface(Ci.nsIWebNavigation);

  webnav.
    QueryInterface(Ci.nsIDocShell).
    contentViewer.
    QueryInterface(Ci.nsIContentViewerEdit).
    copySelection();

  let mime = "text/unicode";
  let whichClipboard = Ci.nsIClipboard.kGlobalClipboard;
  let clipboard = Cc["@mozilla.org/widget/clipboard;1"].
                  getService(Ci.nsIClipboard);
  ok(clipboard.hasDataMatchingFlavors([mime], 1, whichClipboard),
     "Clipboard should have text/unicode");

  let transferable = Cc["@mozilla.org/widget/transferable;1"].
                     createInstance(Ci.nsITransferable);
  transferable.init(webnav.QueryInterface(Ci.nsILoadContext));
  transferable.addDataFlavor(mime);
  clipboard.getData(transferable, whichClipboard);
  var data = {};
  transferable.getTransferData(mime, data, {});
  is(data.value.QueryInterface(Ci.nsISupportsString).data,
     "\n    hello\n    world\n  ",
     "Paste is not HTML, so it should not be pretty printed");

  SimpleTest.finish();
}

  ]]></script>

  <description style="-moz-user-focus: normal; -moz-user-select: text;"><![CDATA[
    hello
    world
  ]]></description>

  <body xmlns="http://www.w3.org/1999/xhtml">
  <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=888839"
     target="_blank">Mozilla Bug 888839</a>
  </body>
</window>