summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/editing/other/insert-text-in-void-element.tentative.html
blob: f84d3fce036981bb441e6e5b989341627a166b23 (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>
<meta charset=utf-8>
<title>Test insertText when selection collapsed in void element</title>
<meta name="timeout" content="long">
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<div contenteditable></div>
<script>
"use strict";

const voidElements = [
  "br",
  "embed",
  "hr",
  "img",
  "input",
  "wbr",
];

// This test tests whether the inserted text is inserted into, when selection
// is collapsed in the void element.  The expected results are based on Blink,
// but the results of <embed> and <wbr> elements are not consistent with the
// other elements'.  Therefore, Blink also does not pass some of the following
// tests.
// FYI: This cannot be tested by editing/run because there is no way to collapse
//      selection into a void element with the framework.

const editor = document.querySelector("div[contenteditable]");
for (const tag of voidElements) {
  test(() => {
    editor.innerHTML = `<div></div>`;
    const element = document.createElement(tag);
    editor.firstChild.appendChild(element);
    editor.focus();
    const selection = getSelection();
    selection.collapse(element, 0);
    document.execCommand("insertText", false, "abc");
    if (tag == "br") {
      assert_in_array(
        editor.innerHTML,
        [
          "<div>abc</div>",
          "<div>abc<br></div>",
        ],
        `The text should be inserted before the <br> element`
      );
    } else {
      assert_in_array(
        editor.innerHTML,
        [
          `<div>abc<${tag}></div>`,
          `<div>abc<${tag}><br></div>`,
        ],
        `The text should be inserted before the <${tag}> element`
      );
    }
  }, `Inserting text when selection is collapsed in <${tag}> which is only child`);

  test(() => {
    editor.innerHTML = `<div></div>`;
    const element = document.createElement(tag);
    editor.firstChild.appendChild(element);
    editor.focus();
    const selection = getSelection();
    selection.collapse(element, 0);
    element.getBoundingClientRect();
    document.execCommand("insertText", false, "abc");
    if (tag == "br") {
      assert_in_array(
        editor.innerHTML,
        [
          "<div>abc</div>",
          "<div>abc<br></div>",
        ],
        `The text should be inserted before the <br> element`
      );
    } else {
      assert_in_array(
        editor.innerHTML,
        [
          `<div>abc<${tag}></div>`,
          `<div>abc<${tag}><br></div>`,
        ],
        `The text should be inserted before the <${tag}> element`
      );
    }
  }, `Inserting text when selection is collapsed in <${tag}> which is only child (explicitly flushes maybe pending layout)`);

  test(() => {
    editor.innerHTML = `<div>abc</div>`;
    const element = document.createElement(tag);
    editor.firstChild.appendChild(element);
    editor.focus();
    const selection = getSelection();
    selection.collapse(element, 0);
    document.execCommand("insertText", false, "def");
    if (tag == "br") {
      assert_in_array(
        editor.innerHTML,
        [
          "<div>abcdef</div>",
          "<div>abcdef<br></div>",
        ],
        `The text should be inserted before the <br> element`
      );
    } else {
      assert_in_array(
        editor.innerHTML,
        [
          `<div>abcdef<${tag}></div>`,
          `<div>abcdef<${tag}><br></div>`,
        ],
        `The text should be inserted before the <${tag}> element`
      );
    }
  }, `Inserting text when selection is collapsed in <${tag}> which follows a text node`);

  test(() => {
    editor.innerHTML = `<div>def</div>`;
    const element = document.createElement(tag);
    editor.firstChild.insertBefore(element, editor.firstChild.firstChild);
    editor.focus();
    const selection = getSelection();
    selection.collapse(element, 0);
    document.execCommand("insertText", false, "abc");
    if (tag == "br") {
      assert_in_array(
        editor.innerHTML,
        [
          "<div>abc<br>def</div>",
          "<div>abc<br>def<br></div>",
        ],
        `The text should be inserted before the <br> element`
      );
    } else {
      assert_in_array(
        editor.innerHTML,
        [
          `<div>abc<${tag}>def</div>`,
          `<div>abc<${tag}>def<br></div>`,
        ],
        `The text should be inserted before the <${tag}> element`
      );
    }
  }, `Inserting text when selection is collapsed in <${tag}> which is followed by a text node`);

  test(() => {
    editor.innerHTML = `<div><span></span></div>`;
    const element = document.createElement(tag);
    editor.firstChild.appendChild(element);
    editor.focus();
    const selection = getSelection();
    selection.collapse(element, 0);
    document.execCommand("insertText", false, "abc");
    if (tag == "br") {
      assert_in_array(
        editor.innerHTML,
        [
          "<div><span></span>abc</div>",
          "<div><span></span>abc<br></div>",
        ],
        `The text should be inserted after the previous empty inline element of <br>`
      );
    } else if (tag == "input") { // visible inline?
      assert_in_array(
        editor.innerHTML,
        [
          `<div><span></span>abc<${tag}></div>`,
          `<div><span></span>abc<${tag}><br></div>`,
        ],
        `The text should be inserted after the previous empty inline element of <${tag}>`
      );
    } else if (tag == "hr") { // block
      assert_in_array(
        editor.innerHTML,
        [
          `<div><span></span>abc<${tag}></div>`,
          `<div><span></span>abc<br><${tag}></div>`,
        ],
        `The text should be inserted after the previous empty inline element of <${tag}>`
      );
    } else {
      assert_in_array(
        editor.innerHTML,
        [
          `<div>abc<span></span><${tag}></div>`,
          `<div>abc<span></span><${tag}><br></div>`,
        ],
        `The text should be inserted before the previous empty inline element of <${tag}>`
      );
    }
  }, `Inserting text when selection is collapsed in <${tag}> which follows an empty <span> element`);

  test(() => {
    editor.innerHTML = `<div>abc<span></span></div>`;
    const element = document.createElement(tag);
    editor.firstChild.appendChild(element);
    editor.focus();
    const selection = getSelection();
    selection.collapse(element, 0);
    document.execCommand("insertText", false, "def");
    if (tag == "br") {
      assert_in_array(
        editor.innerHTML,
        [
          "<div>abcdef<span></span></div>",
          "<div>abcdef<span></span><br></div>",
        ],
        `The text should be inserted at end of the first text node before empty <span> and <br>`
      );
    } else if (tag == "hr") { // block
      assert_in_array(
        editor.innerHTML,
        [
          `<div>abc<span></span>def<${tag}></div>`,
          `<div>abc<span></span>def<br><${tag}></div>`,
        ],
        `The text should be inserted after the previous empty inline element of <${tag}> even if the empty element follows a text node`
      );
    } else {
      assert_in_array(
        editor.innerHTML,
        [
          `<div>abcdef<span></span><${tag}></div>`,
          `<div>abcdef<span></span><${tag}><br></div>`,
        ],
        `The text should be inserted before the previous empty inline element of <${tag}>`
      );
    }
  }, `Inserting text when selection is collapsed in <${tag}> which follows a text node and an empty <span> element`);

  test(() => {
    editor.innerHTML = `<div><span>abc</span></div>`;
    const element = document.createElement(tag);
    editor.firstChild.appendChild(element);
    editor.focus();
    const selection = getSelection();
    selection.collapse(element, 0);
    document.execCommand("insertText", false, "def");
    if (tag == "br") {
      assert_in_array(
        editor.innerHTML,
        [
          "<div><span>abcdef</span></div>",
          "<div><span>abcdef</span><br></div>",
        ],
        `The text should be inserted at end of the text node in <span>`
      );
    } else if (tag == "hr") { // block
      assert_in_array(
        editor.innerHTML,
        [
          `<div><span>abc</span>def<${tag}></div>`,
          `<div><span>abc</span>def<br><${tag}></div>`,
        ],
        `The text should be inserted at after the span and before <${tag}>`
      );
    } else {
      assert_in_array(
        editor.innerHTML,
        [
          `<div><span>abcdef</span><${tag}></div>`,
          `<div><span>abcdef</span><${tag}><br></div>`,
        ],
        `The text should be inserted at end of the text node in <span> before <${tag}>`
      );
    }
  }, `Inserting text when selection is collapsed in <${tag}> which follows a non-empty <span> element`);

  test(() => {
    editor.innerHTML = `<div>abc<span></span>\n</div>`;
    const element = document.createElement(tag);
    editor.firstChild.appendChild(element);
    editor.focus();
    const selection = getSelection();
    selection.collapse(element, 0);
    document.execCommand("insertText", false, "def");
    if (tag == "br") {
      assert_in_array(
        editor.innerHTML.replace(/\n/g, " "),
        [
          "<div>abcdef<span></span></div>",
          "<div>abcdef<span></span><br></div>",
          "<div>abcdef<span></span> </div>",
          "<div>abcdef<span></span> <br></div>",
        ],
        `The text should be inserted at end of the first text node with ignoring the empty <span> and invisible text node before <br>`
      );
    } else if (tag == "img" || tag == "input") { // visible inline
      assert_in_array(
        editor.innerHTML.replace(/\n/g, " "),
        [
          `<div>abc<span></span> def<${tag}></div>`,
          `<div>abc<span></span> def<${tag}><br></div>`,
          `<div>abc<span></span>&nbsp;def<${tag}></div>`,
          `<div>abc<span></span>&nbsp;def<${tag}><br></div>`,
        ],
        `The text should be inserted at end of the last visible text node`
      );
    } else if (tag == "hr") { // block
      assert_in_array(
        editor.innerHTML,
        [
          `<div>abc<span></span>def<${tag}></div>`,
          `<div>abc<span></span>def<br><${tag}></div>`,
        ],
        `The text should be inserted after the previous empty inline element`
      );
    } else {
      assert_in_array(
        editor.innerHTML.replace(/\n/g, " "),
        [
          `<div>abcdef<span></span> <${tag}></div>`,
          `<div>abcdef<span></span> <${tag}><br></div>`,
        ],
        `The text should be inserted before the previous empty inline element`
      );
    }
  }, `Inserting text when selection is collapsed in <${tag}> which follows a text node, an empty <span> element and white-space only text node`);
}

</script>