summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/editing/other/delete-in-child-of-html.tentative.html
blob: 4ae5446d1b07b7a1ddd0c5dd5c6d2ed85d82b822 (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
<!doctype html>
<html>
<head>
<meta chareset="utf-8">
<meta name="timeout" content="long">
<meta name="variant" content="?designMode=off&method=backspace">
<meta name="variant" content="?designMode=off&method=forwarddelete">
<meta name="variant" content="?designMode=on&method=backspace">
<meta name="variant" content="?designMode=on&method=forwarddelete">
<title>Join paragraphs outside the body</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<script src="/resources/testdriver-actions.js"></script>
<script src="../include/editor-test-utils.js"></script>
</head>
<body>
<iframe srcdoc=""></iframe>
<script>
"use strict";

const searchParams = new URLSearchParams(document.location.search);
const testingBackspace = searchParams.get("method") == "backspace";
const commandName = testingBackspace ? "delete" : "forwarddelete";
const testingDesignMode = searchParams.get("designMode") == "on";

const iframe = document.querySelector("iframe");
const minimumSrcDoc =
  "<html>" +
    "<head>" +
      "<title>iframe</title>" +
      "<script src='/resources/testdriver.js'></" + "script>" +
      "<script src='/resources/testdriver-vendor.js'></" + "script>" +
      "<script src='/resources/testdriver-actions.js'></" + "script>" +
    "</head>" +
    "<body><br></body>" +
  "</html>";

async function initializeAndWaitForLoad(iframeElement, srcDocValue) {
  const waitForLoad =
    new Promise(
      resolve => iframeElement.addEventListener("load", resolve, {once: true})
    );
  iframeElement.srcdoc = srcDocValue;
  await waitForLoad;
  if (testingDesignMode) {
    iframeElement.contentDocument.designMode = "on";
  } else {
    iframeElement.contentDocument.documentElement.setAttribute("contenteditable", "");
  }
  iframeElement.contentWindow.focus();
  iframeElement.contentDocument.execCommand("defaultParagraphSeparator", false, "div");
}

function removeResourceScriptElements(node) {
  node.querySelectorAll("script").forEach(
    element => {
      if (element.getAttribute("src")?.startsWith("/resources")) {
        element.remove()
      }
    }
  );
}

// DO NOT USE multi-line comment in this file, then, you can comment out
// unnecessary tests when you need to attach the browser with a debugger.

// For backward compatibility, normal block elements outside <body> should be
// joined by deletion.
promise_test(async () => {
  await initializeAndWaitForLoad(iframe, minimumSrcDoc);
  const childDoc = iframe.contentDocument;
  const utils = new EditorTestUtils(childDoc.documentElement);
  const div1 = childDoc.createElement("div");
  div1.innerHTML = "abc";
  const div2 = childDoc.createElement("div");
  div2.innerHTML = "def";
  childDoc.documentElement.appendChild(div1);
  childDoc.documentElement.appendChild(div2);
  // Now: </head><body><br></body><div>abc</div><div>def</div>
  childDoc.getSelection().collapse(
    testingBackspace ? div2.firstChild : div1.firstChild,
    testingBackspace ? 0 : div1.firstChild.length
  );
  await (testingBackspace ? utils.sendBackspaceKey() : utils.sendDeleteKey());
  removeResourceScriptElements(childDoc);
  assert_in_array(
    childDoc.documentElement.innerHTML,
    [
      '<head><title>iframe</title></head><body><br></body><div>abcdef</div>',
      '<head><title>iframe</title></head><body><br></body><div>abcdef<br></div>',
    ],
    "The <div> elements should be merged"
  );
  assert_equals(
    div1.isConnected ^ div2.isConnected,
    1,
    "One <div> element should be removed, and the other should stay"
  );
}, `${commandName} in <div> elements after <body> should join them`);

// Deleting around end of the <body> should merge the element after the
// <body> into the <body>.
promise_test(async () => {
  await initializeAndWaitForLoad(iframe, minimumSrcDoc);
  const childDoc = iframe.contentDocument;
  const utils = new EditorTestUtils(childDoc.documentElement);
  childDoc.body.innerHTML = "abc";
  const div = childDoc.createElement("div");
  div.innerHTML = "def";
  childDoc.documentElement.appendChild(div);
  // Now: </head><body>abc</body><div>def</div>
  childDoc.getSelection().collapse(
    testingBackspace ? div.firstChild : childDoc.body.firstChild,
    testingBackspace ? 0 : childDoc.body.firstChild.length
  );
  await (testingBackspace ? utils.sendBackspaceKey() : utils.sendDeleteKey());
  removeResourceScriptElements(childDoc);
  assert_in_array(
    childDoc.documentElement.innerHTML,
    [
      '<head><title>iframe</title></head><body>abcdef</body>',
      '<head><title>iframe</title></head><body>abcdef<br></body>',
    ],
    "The text should be merged"
  );
  assert_false(
    div.isConnected,
    "The <div> following <body> should be removed"
  );
}, `${commandName} should merge <div> after <body> into the <body>`);

promise_test(async () => {
  await initializeAndWaitForLoad(iframe, minimumSrcDoc);
  const childDoc = iframe.contentDocument;
  const utils = new EditorTestUtils(childDoc.documentElement);
  const div1 = childDoc.createElement("div");
  div1.innerHTML = "abc";
  const div2 = childDoc.createElement("div");
  div2.innerHTML = "def";
  childDoc.body.innerHTML = "";
  childDoc.body.appendChild(div1);
  childDoc.documentElement.appendChild(div2);
  // Now: </head><body><div>abc</div></body><div>def</div>
  childDoc.getSelection().collapse(
    testingBackspace ? div2.firstChild : div1.firstChild,
    testingBackspace ? 0 : div1.firstChild.length
  );
  await (testingBackspace ? utils.sendBackspaceKey() : utils.sendDeleteKey());
  removeResourceScriptElements(childDoc);
  assert_in_array(
    childDoc.documentElement.innerHTML,
    [
      '<head><title>iframe</title></head><body><div>abcdef</div></body>',
      '<head><title>iframe</title></head><body><div>abcdef<br></div></body>',
    ],
    "The <div> elements should be merged"
  );
  assert_true(
    !div2.isConnected || (div2.isConnected && div2.parentNode == childDoc.body),
    "The <div> following <body> should be removed or moved into the <body>"
  );
}, `${commandName} should merge <div> after <body> into the <div> in the <body>`);

promise_test(async () => {
  await initializeAndWaitForLoad(iframe, minimumSrcDoc);
  const childDoc = iframe.contentDocument;
  const utils = new EditorTestUtils(childDoc.documentElement);
  const div = childDoc.createElement("div");
  div.innerHTML = "abc";
  childDoc.documentElement.appendChild(div);
  // Now: </head><body><br></body><div>abc</div>
  childDoc.getSelection().collapse(
    testingBackspace ? div.firstChild : childDoc.body,
    0
  );
  await (testingBackspace ? utils.sendBackspaceKey() : utils.sendDeleteKey());
  removeResourceScriptElements(childDoc);
  assert_in_array(
    childDoc.documentElement.innerHTML,
    [
      '<head><title>iframe</title></head><body>abc</body>',
      '<head><title>iframe</title></head><body>abc<br></body>',
    ],
    "The <div> element should be merged into the <body>"
  );
  assert_false(
    div.isConnected,
    "The <div> element should be removed"
  );
}, `${commandName} should merge <div> after <body> into the empty <body>`);

// Deleting around start of the <body> should merge the element before the
// <body> into the <body>.
promise_test(async () => {
  await initializeAndWaitForLoad(iframe, minimumSrcDoc);
  const childDoc = iframe.contentDocument;
  const utils = new EditorTestUtils(childDoc.documentElement);
  const div = childDoc.createElement("div");
  div.innerHTML = "abc";
  childDoc.body.innerHTML = "def";
  childDoc.documentElement.insertBefore(div, childDoc.body);
  // Now: </head><div>abc</div><body>def</body>
  childDoc.getSelection().collapse(
    testingBackspace ? childDoc.body.firstChild : div.firstChild,
    testingBackspace ? 0 : div.firstChild.length
  );
  await (testingBackspace ? utils.sendBackspaceKey() : utils.sendDeleteKey());
  removeResourceScriptElements(childDoc);
  assert_in_array(
    childDoc.documentElement.innerHTML,
    [
      '<head><title>iframe</title></head><body>abcdef</body>',
      '<head><title>iframe</title></head><body>abcdef<br></body>',
    ],
    "The text should be merged"
  );
  assert_false(
    div.isConnected,
    "The <div> following <body> should be removed"
  );
}, `${commandName} should merge <div> before <body> into the <body>`);

promise_test(async () => {
  await initializeAndWaitForLoad(iframe, minimumSrcDoc);
  const childDoc = iframe.contentDocument;
  const utils = new EditorTestUtils(childDoc.documentElement);
  const div1 = childDoc.createElement("div");
  div1.innerHTML = "abc";
  const div2 = childDoc.createElement("div");
  div2.innerHTML = "def";
  childDoc.documentElement.insertBefore(div1, childDoc.body);
  childDoc.body.innerHTML = "";
  childDoc.body.appendChild(div2);
  // Now: </head><div>abc</div><body><div>def</div></body>
  childDoc.getSelection().collapse(
    testingBackspace ? div2.firstChild : div1.firstChild,
    testingBackspace ? 0 : div1.firstChild.length
  );
  await (testingBackspace ? utils.sendBackspaceKey() : utils.sendDeleteKey());
  removeResourceScriptElements(childDoc);
  assert_in_array(
    childDoc.documentElement.innerHTML,
    [
      '<head><title>iframe</title></head><body><div>abcdef</div></body>',
      '<head><title>iframe</title></head><body><div>abcdef<br></div></body>',
    ],
    "The <div> elements should be merged"
  );
  assert_true(
    !div2.isConnected || (div2.isConnected && div2.parentNode == childDoc.body),
    "The <div> following <body> should be removed or moved into the <body>"
  );
}, `${commandName} should merge <div> before <body> into the <div> in the <body>`);

promise_test(async () => {
  await initializeAndWaitForLoad(iframe, minimumSrcDoc);
  const childDoc = iframe.contentDocument;
  const utils = new EditorTestUtils(childDoc.documentElement);
  const div = childDoc.createElement("div");
  div.innerHTML = "abc";
  childDoc.documentElement.insertBefore(div, childDoc.body);
  // Now: </head><div>abc</div><body><br></body>
  childDoc.getSelection().collapse(
    testingBackspace ? childDoc.body : div.firstChild,
    testingBackspace ? 0: div.firstChild.length
  );
  await (testingBackspace ? utils.sendBackspaceKey() : utils.sendDeleteKey());
  removeResourceScriptElements(childDoc);
  assert_in_array(
    childDoc.documentElement.innerHTML,
    [
      '<head><title>iframe</title></head><body>abc</body>',
      '<head><title>iframe</title></head><body>abc<br></body>',
    ],
    "The <div> element should be merged into the <body>"
  );
  assert_false(
    div.isConnected,
    "The <div> element should be removed"
  );
}, `${commandName} should merge <div> before <body> into the empty <body>`);

// Deleting around end of the <head> should not delete the <head> element.
if (testingBackspace) {
  promise_test(async () => {
    await initializeAndWaitForLoad(iframe, minimumSrcDoc);
    const childDoc = iframe.contentDocument;
    const utils = new EditorTestUtils(childDoc.documentElement);
    const div = childDoc.createElement("div");
    div.innerHTML = "abc";
    childDoc.body.innerHTML = "def";
    childDoc.documentElement.insertBefore(div, childDoc.body);
    // Now: </head><div>abc</div><body>def</body>
    childDoc.getSelection().collapse(div.firstChild, 0);
    await utils.sendBackspaceKey();
    removeResourceScriptElements(childDoc);
    assert_equals(
      childDoc.documentElement.innerHTML,
      '<head><title>iframe</title></head><div>abc</div><body>def</body>',
      "The <div> element should be merged into the <body>"
    );
    assert_true(
      div.isConnected,
      "The <div> element should not be removed"
    );
  }, `delete from <div> following invisible <head> element shouldn't delete the <head> element`);
}

// Joining elements around <head> element should not delete the <head> element.
promise_test(async () => {
  await initializeAndWaitForLoad(iframe, minimumSrcDoc);
  const childDoc = iframe.contentDocument;
  const utils = new EditorTestUtils(childDoc.documentElement);
  const div1 = childDoc.createElement("div");
  div1.innerHTML = "abc";
  const div2 = childDoc.createElement("div");
  div2.innerHTML = "def";
  childDoc.documentElement.insertBefore(div1, childDoc.head);
  childDoc.documentElement.insertBefore(div2, childDoc.body);
  // Now: <div>abc</div><head>...</head><div>def</div><body><br></body>
  childDoc.getSelection().collapse(
    testingBackspace ? div2.firstChild : div1.firstChild,
    testingBackspace ? 0 : div1.firstChild.length
  );
  await (testingBackspace ? utils.sendBackspaceKey() : utils.sendDeleteKey());
  removeResourceScriptElements(childDoc);
  assert_in_array(
    childDoc.documentElement.innerHTML,
    [
      '<div>abcdef</div><head><title>iframe</title></head><body><br></body>',
      '<div>abcdef<br></div><head><title>iframe</title></head><body><br></body>',
      '<head><title>iframe</title></head><div>abcdef</div><body><br></body>',
      '<head><title>iframe</title></head><div>abcdef<br></div><body><br></body>',
    ],
    "The <div> element should be merged into the left <div> without deleting the <head>"
  );
  assert_true(
    div1.isConnected ^ div2.isConnected,
    "One <div> element should be removed, but the other should stay"
  );
}, `${commandName} from <div> around invisible <head> element should not delete the <head>`);


// Same as <body> element boundary, allow joining across <head> elements if
// and only if both elements are normal elements.
promise_test(async () => {
  await initializeAndWaitForLoad(iframe, minimumSrcDoc);
  const childDoc = iframe.contentDocument;
  childDoc.head.setAttribute("style", "display:block");
  const utils = new EditorTestUtils(childDoc.documentElement);
  const div1 = childDoc.createElement("div");
  div1.innerHTML = "abc";
  const div2 = childDoc.createElement("div");
  div2.innerHTML = "def";
  childDoc.head.appendChild(div1);
  childDoc.documentElement.insertBefore(div2, childDoc.body);
  // Now: <div>abc</div></head><div>def</div><body><br></body>
  childDoc.getSelection().collapse(
    testingBackspace ? div2.firstChild : div1.firstChild,
    testingBackspace ? 0 : div1.firstChild.length
  );
  await (testingBackspace ? utils.sendBackspaceKey() : utils.sendDeleteKey());
  removeResourceScriptElements(childDoc);
  childDoc.head.removeAttribute("style");
  assert_in_array(
    childDoc.documentElement.innerHTML,
    [
      '<head><title>iframe</title><div>abcdef</div></head><body><br></body>',
      '<head><title>iframe</title><div>abcdef<br></div></head><body><br></body>',
    ],
    "The <div> element should be merged into the <div> in the <head>"
  );
  assert_false(
    div2.isConnected,
    "The <div> element should be removed"
  );
}, `${commandName} from <div> following visible <head> element should be merged with the <div> in the <head>`);

// However, don't allow to join with <script> and <style> elements because
// changing them may not be safe.
promise_test(async () => {
  await initializeAndWaitForLoad(iframe, minimumSrcDoc);
  const childDoc = iframe.contentDocument;
  childDoc.head.setAttribute("style", "display:block");
  const utils = new EditorTestUtils(childDoc.documentElement);
  const style = childDoc.createElement("style");
  style.setAttribute("style", "display:block;white-space:pre");
  style.innerHTML = "abc";
  const div = childDoc.createElement("div");
  div.innerHTML = "def";
  childDoc.head.appendChild(style);
  childDoc.documentElement.insertBefore(div, childDoc.body);
  // Now: <style>abc</style></head><div>def</div><body><br></body>
  childDoc.getSelection().collapse(
    testingBackspace ? div.firstChild : style.firstChild,
    testingBackspace ? 0 : style.firstChild.length
  );
  await (testingBackspace ? utils.sendBackspaceKey() : utils.sendDeleteKey());
  removeResourceScriptElements(childDoc);
  childDoc.head.removeAttribute("style");
  style.removeAttribute("style");
  assert_equals(
    childDoc.documentElement.innerHTML,
    '<head><title>iframe</title><style>abc</style></head><div>def</div><body><br></body>',
    "The <div> element should not be merged with the <style> in the <head>"
  );
  assert_true(
    div.isConnected,
    "The <div> element should not be removed"
  );
}, `${commandName} from <div> following visible <head> element should be merged with the visible <style> in the <head>`);

promise_test(async () => {
  await initializeAndWaitForLoad(iframe, minimumSrcDoc);
  const childDoc = iframe.contentDocument;
  childDoc.head.setAttribute("style", "display:block");
  const utils = new EditorTestUtils(childDoc.documentElement);
  const script = childDoc.createElement("script");
  script.setAttribute("style", "display:block;white-space:pre");
  script.innerHTML = "// abc";
  const div = childDoc.createElement("div");
  div.innerHTML = "def";
  childDoc.head.appendChild(script);
  childDoc.documentElement.insertBefore(div, childDoc.body);
  // Now: <script>// abc</ script></head><div>def</div><body><br></body>
  childDoc.getSelection().collapse(
    testingBackspace ? div.firstChild : script.firstChild,
    testingBackspace ? 0 : script.firstChild.length
  );
  await (testingBackspace ? utils.sendBackspaceKey() : utils.sendDeleteKey());
  removeResourceScriptElements(childDoc);
  childDoc.head.removeAttribute("style");
  script.removeAttribute("style");
  assert_equals(
    childDoc.documentElement.innerHTML,
    '<head><title>iframe</title><script>// abc</' + 'script></head><div>def</div><body><br></body>',
    "The <div> element should not be merged with the <script> in the <head>"
  );
  assert_true(
    div.isConnected,
    "The <div> element should not be removed"
  );
}, `${commandName} from <div> following visible <script> element should be merged with the visible <script> in the <head>`);

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