summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/tests/test_nsIEditorMailSupport_insertAsCitedQuotation.html
blob: 531a8c6015e47fe75764b0575e2c698ad0c3de84 (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
<!DOCTYPE>
<html>
<head>
  <title>Test for nsIEditorMailSupport.insertAsCitedQuotation()</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" href="/tests/SimpleTest/test.css">
</head>
<body>
<div contenteditable></div>
<script>
"use strict";

SimpleTest.waitForExplicitFinish();
SimpleTest.waitForFocus(() => {
  function testInputEvents() {
    const inReadonlyMode = getEditor().flags & SpecialPowers.Ci.nsIEditor.eEditorReadonlyMask;
    const editorDescription = `(readonly=${!!inReadonlyMode})`;

    const editor = document.querySelector("div[contenteditable]");
    const selection = getSelection();

    let beforeInputEvents = [];
    let inputEvents = [];
    let selectionRanges = [];
    function onBeforeInput(aEvent) {
      beforeInputEvents.push(aEvent);
      selectionRanges = [];
      for (let i = 0; i < selection.rangeCount; i++) {
        let range = selection.getRangeAt(i);
        selectionRanges.push({startContainer: range.startContainer, startOffset: range.startOffset,
                              endContainer: range.endContainer, endOffset: range.endOffset});
      }
    }
    function onInput(aEvent) {
      inputEvents.push(aEvent);
    }
    editor.addEventListener("beforeinput", onBeforeInput);
    editor.addEventListener("input", onInput);

    editor.innerHTML = "";
    editor.focus();
    selection.collapse(editor, 0);

    function checkInputEvent(aEvent, aInputType, aData, aDescription) {
      ok(aEvent instanceof InputEvent,
        `"${aEvent.type}" event should be dispatched with InputEvent interface ${aDescription}`);
      // If it were cancelable whose inputType is empty string, web apps would
      // block any Firefox specific modification whose inputType are not declared
      // by the spec.
      let expectedCancelable = aEvent.type === "beforeinput" && aInputType !== "";
      is(aEvent.cancelable, expectedCancelable,
        `"${aEvent.type}" event should ${expectedCancelable ? "be" : "be never"} cancelable ${aDescription}`);
      is(aEvent.bubbles, true,
        `"${aEvent.type}" event should always bubble ${aDescription}`);
      is(aEvent.inputType, aInputType,
        `inputType of "${aEvent.type}" event should be "${aInputType}" ${aDescription}`);
      is(aEvent.data, aData,
        `data of "${aEvent.type}" event should be ${aData} ${aDescription}`);
      is(aEvent.dataTransfer, null,
        `dataTransfer of "${aEvent.type}" event should be null ${aDescription}`);
      let targetRanges = aEvent.getTargetRanges();
      if (aEvent.type === "beforeinput") {
        is(targetRanges.length, selectionRanges.length,
          `getTargetRanges() of "beforeinput" event should return selection ranges ${aDescription}`);
        if (targetRanges.length === selectionRanges.length) {
          for (let i = 0; i < selectionRanges.length; i++) {
            is(targetRanges[i].startContainer, selectionRanges[i].startContainer,
              `startContainer of getTargetRanges()[${i}] of "beforeinput" event does not match ${aDescription}`);
            is(targetRanges[i].startOffset, selectionRanges[i].startOffset,
              `startOffset of getTargetRanges()[${i}] of "beforeinput" event does not match ${aDescription}`);
            is(targetRanges[i].endContainer, selectionRanges[i].endContainer,
              `endContainer of getTargetRanges()[${i}] of "beforeinput" event does not match ${aDescription}`);
            is(targetRanges[i].endOffset, selectionRanges[i].endOffset,
              `endOffset of getTargetRanges()[${i}] of "beforeinput" event does not match ${aDescription}`);
          }
        }
      } else {
        is(targetRanges.length, 0,
          `getTargetRanges() of "${aEvent.type}" event should return empty array ${aDescription}`);
      }
    }

    // Tests when the editor is in plaintext mode.

    getEditor().flags |= SpecialPowers.Ci.nsIEditor.eEditorPlaintextMask;

    beforeInputEvents = [];
    inputEvents = [];
    getEditorMailSupport().insertAsCitedQuotation("this is quoted text\nAnd here is second line.", "this is cited text", false);

    ok(
      selection.isCollapsed,
      `Selection should be collapsed after calling nsIEditorMailSupport.insertAsCitedQuotation() of plaintext editor ${editorDescription}`
    );
    is(
      selection.focusNode,
      editor,
      `focus node of Selection should be a child of the editing host after calling nsIEditorMailSupport.insertAsCitedQuotation() of plaintext editor ${editorDescription}`
    );
    is(
      selection.focusOffset,
      1,
      `focus offset of Selection should be next to inserted <span> element after calling nsIEditorMailSupport.insertAsCitedQuotation() of plaintext editor ${editorDescription}`
    );
    is(
      editor.innerHTML,
      '<span style="white-space: pre-wrap;">&gt; this is quoted text<br>&gt; And here is second line.<br><br></span>',
      `The quoted text should be inserted as plaintext into the plaintext editor ${editorDescription}`
    );
    is(
      beforeInputEvents.length,
      1,
      `One "beforeinput" event should be fired on the editing host after calling nsIEditorMailSupport.insertAsCitedQuotation() of plaintext editor ${editorDescription}`
    );
    checkInputEvent(
      beforeInputEvents[0],
      "insertText", "this is quoted text\nAnd here is second line.",
      `after calling nsIEditorMailSupport.insertAsCitedQuotation() of plaintext editor ${editorDescription}`
    );
    is(
      inputEvents.length,
      1,
      `One "input" event should be fired on the editing host after calling nsIEditorMailSupport.insertAsCitedQuotation() of plaintext editor ${editorDescription}`
    );
    checkInputEvent(
      inputEvents[0],
      "insertText", "this is quoted text\nAnd here is second line.",
      `after calling nsIEditorMailSupport.insertAsCitedQuotation() of plaintext editor ${editorDescription}`
    );

    // Tests when the editor is in HTML editor mode.
    getEditor().flags &= ~SpecialPowers.Ci.nsIEditor.eEditorPlaintextMask;

    editor.innerHTML = "";

    beforeInputEvents = [];
    inputEvents = [];
    getEditorMailSupport().insertAsCitedQuotation("this is quoted text<br>", "this is cited text", false);

    ok(
      selection.isCollapsed,
      `Selection should be collapsed after calling nsIEditorMailSupport.insertAsCitedQuotation() of HTMLEditor editor (inserting as plaintext) ${editorDescription}`
    );
    is(
      selection.focusNode,
      editor,
      `focus node of Selection should be a child of the editing host after calling nsIEditorMailSupport.insertAsCitedQuotation() of HTMLEditor editor (inserting as plaintext)  ${editorDescription}`
    );
    is(
      selection.focusOffset,
      1,
      `focus offset of Selection should be next to inserted <span> element after calling nsIEditorMailSupport.insertAsCitedQuotation() of HTMLEditor editor (inserting as plaintext) ${editorDescription}`
    );
    is(
      editor.innerHTML,
      '<blockquote type="cite" cite="this is cited text">this is quoted text&lt;br&gt;</blockquote>',
      `The quoted text should be inserted as plaintext into the HTML editor ${editorDescription}`
    );
    is(
      beforeInputEvents.length,
      1,
      `One "beforeinput" event should be fired on the editing host after calling nsIEditorMailSupport.insertAsCitedQuotation() of HTMLEditor editor (inserting as plaintext) ${editorDescription}`
    );
    checkInputEvent(
      beforeInputEvents[0],
      "",
      null,
      `after calling nsIEditorMailSupport.insertAsCitedQuotation() of HTMLEditor editor (inserting as plaintext) ${editorDescription}`
    );
    is(
      inputEvents.length,
      1,
      `One "input" event should be fired on the editing host after calling nsIEditorMailSupport.insertAsCitedQuotation() of HTMLEditor editor (inserting as plaintext) ${editorDescription}`
    );
    checkInputEvent(
      inputEvents[0],
      "",
      null,
      `after calling nsIEditorMailSupport.insertAsCitedQuotation() of HTMLEditor editor (inserting as plaintext) ${editorDescription}`
    );

    editor.innerHTML = "";

    beforeInputEvents = [];
    inputEvents = [];
    getEditorMailSupport().insertAsCitedQuotation("this is quoted text<br>And here is second line.", "this is cited text", true);

    ok(
      selection.isCollapsed,
      `Selection should be collapsed after calling nsIEditorMailSupport.insertAsCitedQuotation() of HTMLEditor editor (inserting as HTML source) ${editorDescription}`
    );
    is(
      selection.focusNode,
      editor,
      `focus node of Selection should be a child of the editing host after calling nsIEditorMailSupport.insertAsCitedQuotation() of HTMLEditor editor (inserting as HTML source) ${editorDescription}`
    );
    is(
      selection.focusOffset,
      1,
      `focus offset of Selection should be next to inserted <span> element after calling nsIEditorMailSupport.insertAsCitedQuotation() of HTMLEditor editor (inserting as HTML source) ${editorDescription}`
    );
    is(
      editor.innerHTML,
      '<blockquote type="cite" cite="this is cited text">this is quoted text<br>And here is second line.</blockquote>',
      `The quoted text should be inserted as HTML source into the HTML editor ${editorDescription}`
    );
    is(
      beforeInputEvents.length,
      1,
      `One "beforeinput" event should be fired on the editing host after calling nsIEditorMailSupport.insertAsCitedQuotation() of HTMLEditor editor (inserting as HTML source) ${editorDescription}`
    );
    checkInputEvent(
      beforeInputEvents[0],
      "",
      null,
      `after calling nsIEditorMailSupport.insertAsCitedQuotation() of HTMLEditor editor (inserting as HTML source) ${editorDescription}`
    );
    is(
      inputEvents.length,
      1,
      `One "input" event should be fired on the editing host after calling nsIEditorMailSupport.insertAsCitedQuotation() of HTMLEditor editor (inserting as HTML source) ${editorDescription}`
    );
    checkInputEvent(
      inputEvents[0],
      "",
      null,
      `after calling nsIEditorMailSupport.insertAsCitedQuotation() of HTMLEditor editor (inserting as HTML source) ${editorDescription}`
    );

    editor.removeEventListener("beforeinput", onBeforeInput);
    editor.removeEventListener("input", onInput);
  }

  function testStyleOfPlaintextMode() {
    const inReadonlyMode = getEditor().flags & SpecialPowers.Ci.nsIEditor.eEditorReadonlyMask;
    const editorDescription = `(readonly=${!!inReadonlyMode})`;

    getEditor().flags |= SpecialPowers.Ci.nsIEditor.eEditorPlaintextMask;

    (function testInDiv() {
      const editor = document.querySelector("div[contenteditable]");
      editor.innerHTML = "";
      editor.focus();
      getEditorMailSupport().insertAsCitedQuotation(
        "this is quoted text.",
        "this is cited text",
        false
      );
      is(
        editor.firstChild.tagName,
        "SPAN",
        `testStyleOfPlaintextMode: testInDiv: insertAsCitedQuotation should insert a <span> element ${editorDescription}`
      );
      const computedSpanStyle = getComputedStyle(editor.firstChild);
      is(
        computedSpanStyle.display,
        "inline",
        `testStyleOfPlaintextMode: testInDiv: The inserted <span> element should be "display: inline;" ${editorDescription}`
      );
      is(
        computedSpanStyle.whiteSpace,
        "pre-wrap",
        `testStyleOfPlaintextMode: testInDiv: The inserted <span> element should be "white-space: pre-wrap;" ${editorDescription}`
      );
    })();

    try {
      document.body.contentEditable = true;
      (function testInBody() {
        getSelection().collapse(document.body, 0);
        getEditorMailSupport().insertAsCitedQuotation(
          "this is quoted text.",
          "this is cited text",
          false
        );
        is(
          document.body.firstChild.tagName,
          "SPAN",
          `testStyleOfPlaintextMode: testInBody: insertAsCitedQuotation should insert a <span> element in plaintext mode and in a <body> element ${editorDescription}`
        );
        const computedSpanStyle = getComputedStyle(document.body.firstChild);
        is(
          computedSpanStyle.display,
          "block",
          `testStyleOfPlaintextMode: testInBody: The inserted <span> element should be "display: block;" in plaintext mode and in a <body> element ${editorDescription}`
        );
        is(
          computedSpanStyle.whiteSpace,
          "pre-wrap",
          `testStyleOfPlaintextMode: testInBody: The inserted <span> element should be "white-space: pre-wrap;" in plaintext mode and in a <body> element ${editorDescription}`
        );
        document.body.firstChild.remove();
      })();
    } finally {
      document.body.contentEditable = false;
    }
  }

  testInputEvents();
  testStyleOfPlaintextMode();

  // Even if the HTMLEditor is readonly, XPCOM API should keep working.
  getEditor().flags |= SpecialPowers.Ci.nsIEditor.eEditorReadonlyMask;
  testInputEvents();
  testStyleOfPlaintextMode();

  SimpleTest.finish();
});

function getEditor() {
  var editingSession = SpecialPowers.wrap(window).docShell.editingSession;
  return editingSession.getEditorForWindow(window);
}

function getEditorMailSupport() {
  return getEditor().QueryInterface(SpecialPowers.Ci.nsIEditorMailSupport);
}

</script>
</body>

</html>