summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/editing/other/selectall-in-editinghost.html
blob: 680817a77146764f5f80854da4d375f94b20ab1c (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
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>Select All in focused editor</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
"use strict";

addEventListener("DOMContentLoaded", () => {
  const editingHost = document.querySelector("div[contenteditable]");
  test(() => {
    editingHost.focus();
    document.execCommand("selectAll");
    assert_false(
      getSelection().isCollapsed,
      'Selection should not be collapsed after calling document.execCommand("selectAll")'
    );
    const rangeText = getSelection().toString();
    assert_false(
      rangeText.includes("preceding text"),
      "Selection should not contain the preceding text of the editing host"
    );
    assert_true(
      rangeText.includes("editable text"),
      "Selection should contain the editable text in the editing host"
    );
    assert_false(
      rangeText.includes("following text"),
      "Selection should not contain the following text of the editing host"
    );
    getSelection().removeAllRanges();
  }, "execCommand('selectAll') should select all content in the editing host");

  test(() => {
    editingHost.focus();
    getSelection().removeAllRanges();
    document.execCommand("selectAll");
    assert_false(
      getSelection().isCollapsed,
      'Selection should not be collapsed after calling document.execCommand("selectAll")'
    );
    const rangeText = getSelection().toString();
    assert_false(
      rangeText.includes("preceding text"),
      "Selection should not contain the preceding text of the editing host"
    );
    assert_true(
      rangeText.includes("editable text"),
      "Selection should contain the editable text in the editing host"
    );
    assert_false(
      rangeText.includes("following text"),
      "Selection should not contain the following text of the editing host"
    );
    getSelection().removeAllRanges();
  }, "execCommand('selectAll') should select all content in the editing host when it has focus but no selection range");

  test(() => {
    editingHost.focus();
    editingHost.innerHTML = "preceding editable text<input value='input value'>following editable text";
    getSelection().collapse(editingHost.querySelector("input"), 0);
    document.execCommand("selectAll");
    assert_false(
      getSelection().isCollapsed,
      'Selection should not be collapsed after calling document.execCommand("selectAll")'
    );
    const rangeText = getSelection().toString();
    assert_false(
      rangeText.includes("preceding text"),
      "Selection should not contain the preceding text of the editing host"
    );
    assert_true(
      rangeText.includes("preceding editable text"),
      "Selection should contain the preceding editable text of <input> in the editing host"
    );
    assert_true(
      rangeText.includes("following editable text"),
      "Selection should contain the following editable text of <input> in the editing host"
    );
    assert_false(
      rangeText.includes("following text"),
      "Selection should not contain the following text of the editing host"
    );
    getSelection().removeAllRanges();
  }, "execCommand('selectAll') should select all content in the editing host when selection collapsed in the <input>");

  test(() => {
    editingHost.focus();
    editingHost.innerHTML = "preceding editable text<textarea>textarea value</textarea>following editable text";
    getSelection().collapse(editingHost.querySelector("textarea"), 0);
    document.execCommand("selectAll");
    assert_false(
      getSelection().isCollapsed,
      'Selection should not be collapsed after calling document.execCommand("selectAll")'
    );
    const rangeText = getSelection().toString();
    assert_false(
      rangeText.includes("preceding text"),
      "Selection should not contain the preceding text of the editing host"
    );
    assert_true(
      rangeText.includes("preceding editable text"),
      "Selection should contain the preceding editable text of <textarea> in the editing host"
    );
    assert_true(
      rangeText.includes("following editable text"),
      "Selection should contain the following editable text of <textarea> in the editing host"
    );
    assert_false(
      rangeText.includes("following text"),
      "Selection should not contain the following text of the editing host"
    );
    getSelection().removeAllRanges();
  }, "execCommand('selectAll') should select all content in the editing host when selection collapsed in the <textarea>");
});
</script>
</head>
<body>
<p>preceding text</p>
<div contenteditable>editable text</div>
<p>following text</p>
</body>
</html>