summaryrefslogtreecommitdiffstats
path: root/dom/base/test/test_bug166235.html
blob: 0431e204c21aa1ed52897e81ac2e498bb4394abf (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=166235
https://bugzilla.mozilla.org/show_bug.cgi?id=816298
-->
<head>
  <title>Test for Bug 166235</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=166235">Mozilla Bug 166235 and Bug 816298</a>
<p id="test0">This text should be copied.</p>
<p id="test1">This text should<span style="user-select: none;"> NOT</span> be copied.</p>
<p id="test2">This<span style="user-select: none;"><span style="user-select: text"> text should</span> NOT</span> be copied.</p>
<p id="test3">This text should<span style="user-select: -moz-none;"> NOT</span> be copied.</p>
<p id="test4">This<span style="user-select: -moz-none;"><span style="user-select: text"> text should</span> NOT</span> be copied.</p>
<p id="test5">This<span style="user-select: all"> text should</span> be copied.</p>
<div id="content" style="display: none">
  
</div>
<textarea id="input"></textarea>
<pre id="test">
<script type="application/javascript">
  "use strict";

/** Test for Bug 166235 **/
  var Cc = SpecialPowers.Cc;
  var Ci = SpecialPowers.Ci;

  var docShell = SpecialPowers.wrap(window).docShell;

  var documentViewer = docShell.docViewer
                               .QueryInterface(SpecialPowers.Ci.nsIDocumentViewerEdit);

  var clipboard = Cc["@mozilla.org/widget/clipboard;1"]
                    .getService(SpecialPowers.Ci.nsIClipboard);

  var textarea = SpecialPowers.wrap(document.getElementById('input'));

  function getLoadContext() {
    return SpecialPowers.wrap(window).docShell
                                     .QueryInterface(Ci.nsILoadContext);
  }

  function copyChildrenToClipboard(id) {
    textarea.blur();
    clipboard.emptyClipboard(1);
    window.getSelection().selectAllChildren(document.getElementById(id));
    documentViewer.copySelection();

    is(clipboard.hasDataMatchingFlavors(["text/plain"], 1), true);
    is(clipboard.hasDataMatchingFlavors(["text/html"], 1), true);
  }
  function getClipboardData(mime) {
    var transferable = Cc['@mozilla.org/widget/transferable;1']
                         .createInstance(SpecialPowers.Ci.nsITransferable);
    transferable.init(getLoadContext());
    transferable.addDataFlavor(mime);
    clipboard.getData(transferable, 1, SpecialPowers.wrap(window).browsingContext.currentWindowContext);
    var data = SpecialPowers.createBlankObject();
    transferable.getTransferData(mime, data) ;
    return SpecialPowers.wrap(data);
  }
  function testHtmlClipboardValue(mime, expected, test) {
    var expectedValue = expected;
    // For Windows, navigator.platform returns "Win32".
    if (navigator.platform.includes("Win")) {
      expectedValue = kTextHtmlPrefixClipboardDataWindows + expected + kTextHtmlSuffixClipboardDataWindows;
    }
    testClipboardValue(mime, expectedValue, test);
  }
  function testClipboardValue(mime, expected, test) {
    var data = getClipboardData(mime);
    is (data.value == null ? data.value :
        data.value.QueryInterface(SpecialPowers.Ci.nsISupportsString).data,
      expected,
      mime + " value in the clipboard");
    return data.value;
  }
  function testPasteText(expected, test) {
    textarea.value="";
    textarea.focus();
    textarea.editor.paste(1);
    is(textarea.value, expected, test + ": textarea paste");
  }
  function testInnerHTML(id, expected) {
    var value = document.getElementById(id).innerHTML;
    is(value, expected, id + ".innerHTML");
  }

// expected results for Selection.toString()
var originalStrings = [
  'This text should be copied.',
  'This text should be copied.',
  'This text should be copied.',
  'This text should be copied.',
  'This text should be copied.',
  'This text should be copied.'
];

// expected results for clipboard text/html
var clipboardHTML = [
  '<p id=\"test0\">This text should be copied.</p>',
  '<p id=\"test1\">This text should be copied.</p>',
  '<p id=\"test2\">This<span style=\"user-select: text\"> text should</span> be copied.</p>',
  '<p id=\"test3\">This text should be copied.</p>',
  '<p id=\"test4\">This<span style=\"user-select: text\"> text should</span> be copied.</p>',
  '<p id=\"test5\">This<span style=\"user-select: all\"> text should</span> be copied.</p>',
];

// expected results for clipboard text/plain
var clipboardUnicode = [
  'This text should be copied.',
  'This text should be copied.',
  'This text should be copied.',
  'This text should be copied.',
  'This text should be copied.',
  'This text should be copied.'
];

// expected results for .innerHTML
var innerHTMLStrings = [
  'This text should be copied.',
  'This text should<span style=\"user-select: none;\"> NOT</span> be copied.',
  'This<span style=\"user-select: none;\"><span style=\"user-select: text\"> text should</span> NOT</span> be copied.',
  'This text should<span style=\"user-select: -moz-none;\"> NOT</span> be copied.',
  'This<span style=\"user-select: -moz-none;\"><span style=\"user-select: text\"> text should</span> NOT</span> be copied.',
  'This<span style=\"user-select: all\"> text should</span> be copied.',
];

// expected results for pasting into a TEXTAREA
var textareaStrings = [
  'This text should be copied.',
  'This text should be copied.',
  'This text should be copied.',
  'This text should be copied.',
  'This text should be copied.',
  'This text should be copied.'
];

for (var i = 0; i < originalStrings.length; i++) {
  var id = 'test' + i;
  copyChildrenToClipboard(id);
  is(window.getSelection().toString(), originalStrings[i], id + ' Selection.toString()');
  testHtmlClipboardValue("text/html", clipboardHTML[i], id);
  testClipboardValue("text/plain", clipboardUnicode[i], id);
  testInnerHTML(id, innerHTMLStrings[i]);
  testPasteText(textareaStrings[i], id + '.innerHTML');
}

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