summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/selection/contenteditable/modify.tentative.html
blob: a3afd52ea2ebe54cb2c296b953573813392f6bbe (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
<!DOCTYPE html>
<meta charset="utf-8">
<title>Selection.modify() inside contenteditable</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div contenteditable id="host">Editable</div>
<div>Non-editable</div>
<div id="inlinehosts">
  Prefix: <span contenteditable title="inline">Editable</span>: Suffix<br>
  Prefix: <span contenteditable style="display:inline-block;" title="inline-block">Editable</span>: Suffix<br>
  <span contenteditable title="suffix only">Editable</span>: Suffix<br>
  Prefix: <span contenteditable title="prefix only">Editable</span><br>
  <span contenteditable title="standalone">Editable</span><br>
  Prefix: <span contenteditable title="inline linebreak">Edit<br>able</span>: Suffix<br>
  Prefix: <span contenteditable style="display:inline-block;" title="inline-block linebreak">Edit<br>able</span>:
  Suffix<br>
</div>
<script>
  /** @param {Node} parent */
  function* textNodeEntries(parent) {
    for (const [i, node] of parent.childNodes.entries()) {
      if (node.nodeType === Node.TEXT_NODE) {
        yield [i, node];
      }
    }
  }

  const selection = getSelection();
  test(() => {
    selection.collapse(host);
    selection.modify('extend', 'forward', 'word');
    selection.modify('extend', 'forward', 'word');
    assert_equals(selection.focusNode.parentElement, host);
  }, "Selection.modify() must not select outside of the host");

  /** @type {NodeListOf<HTMLElement>} */
  const hosts = inlinehosts.querySelectorAll("span[contenteditable]");
  for (const host of hosts) {
    test(() => {
      for (const [i, text] of textNodeEntries(host)) {
        selection.collapse(text, 1);
        selection.modify("move", "forward", "lineboundary");
        if (selection.focusNode === host) {
          assert_equals(selection.focusOffset, i + 1, "focusOffset should be after the text node");
        } else {
          assert_equals(selection.focusNode, text, "focusNode should be the text node");
          assert_equals(selection.focusOffset, text.textContent.length, "focusOffset should be the length of the text node");
        }
      }
    }, `Selection.modify('move', 'forward', 'lineboundary') must be within the inline editing host: ${host.title}`);
    test(() => {
      for (const [i, text] of textNodeEntries(host)) {
        selection.collapse(text, 1);
        selection.modify("move", "backward", "lineboundary");
        assert_equals(selection.focusNode, text, "focusNode should be the text node");
        assert_equals(selection.focusOffset, 0, "focusOffset should be 0");
      }
    }, `Selection.modify('move', 'backward', 'lineboundary') must be within the inline editing host: ${host.title}`);
  }
</script>