summaryrefslogtreecommitdiffstats
path: root/dom/base/test/test_sendSelectionSetEvent_with_same_range.html
blob: 0f3235b3c1abdab21676a1bf75f13068d89fd690 (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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Testing nsIDOMWindowUtils.sendSelectionSetEvent not update selection if result range is same in serialized text within the ContentEventHandler rules</title>
<script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css"/>
<script>
"use strict";
const { AppConstants } = ChromeUtils.importESModule(
  "resource://gre/modules/AppConstants.sys.mjs"
);
const kLineBreak = navigator.platform.indexOf("Win") == 0 && false ? "\r\n" : "\n";

SimpleTest.waitForExplicitFinish();
SimpleTest.waitForFocus(async () => {
  const editingHost = document.querySelector("div[contenteditable]");

  function waitForFlushingIMEContentObserver() {
    return new Promise(resolve => requestAnimationFrame(
      () => requestAnimationFrame(resolve)
    ));
  }

  await (async function test_setSelection_when_selection_collapsed_at_end_of_inline_element() {
    editingHost.innerHTML = "<b>abc</b>def";
    getSelection().collapse(editingHost.querySelector("b").firstChild, "abc".length);
    await waitForFlushingIMEContentObserver();
    const ret = windowUtils.sendSelectionSetEvent(
      3,
      0,
      SpecialPowers.Ci.nsIDOMWindowUtils.SELECTION_SET_FLAG_USE_NATIVE_LINE_BREAK
    );
    ok(
      ret,
      "test_setSelection_when_selection_collapsed_at_end_of_inline_element: eSetSelection event should be succeeded"
    );
    is(
      getSelection().focusNode,
      editingHost.querySelector("b").firstChild,
      "test_setSelection_when_selection_collapsed_at_end_of_inline_element: focus node should not be changed from the text node in the <b>"
    );
    is(
      getSelection().focusOffset,
      "abc".length,
      "test_setSelection_when_selection_collapsed_at_end_of_inline_element: focus offset should not be changed from end of the text node"
    );
  })();

  await (async function test_setSelection_when_selection_collapsed_after_inline_element() {
    editingHost.innerHTML = "<b>abc</b>def";
    getSelection().collapse(editingHost.querySelector("b").nextSibling, 0);
    await waitForFlushingIMEContentObserver();
    const ret = windowUtils.sendSelectionSetEvent(
      3,
      0,
      SpecialPowers.Ci.nsIDOMWindowUtils.SELECTION_SET_FLAG_USE_NATIVE_LINE_BREAK
    );
    ok(
      ret,
      "test_setSelection_when_selection_collapsed_after_inline_element: eSetSelection event should be succeeded"
    );
    is(
      getSelection().focusNode,
      editingHost.querySelector("b").nextSibling,
      "test_setSelection_when_selection_collapsed_after_inline_element: focus node should not be changed from the text node after the <b>"
    );
    is(
      getSelection().focusOffset,
      0,
      "test_setSelection_when_selection_collapsed_after_inline_element: focus offset should not be changed from start of the text node"
    );
  })();

  await (async function test_setSelection_when_selection_collapsed_in_empty_block_element() {
    editingHost.innerHTML = "<p style=\"width:1em;height:1em;\"></p>\n";
    getSelection().collapse(editingHost.querySelector("p"), 0);
    await waitForFlushingIMEContentObserver();
    const ret = windowUtils.sendSelectionSetEvent(
      kLineBreak.length,
      0,
      SpecialPowers.Ci.nsIDOMWindowUtils.SELECTION_SET_FLAG_USE_NATIVE_LINE_BREAK
    );
    ok(
      ret,
      "test_setSelection_when_selection_collapsed_in_empty_block_element: eSetSelection event should be succeeded"
    );
    is(
      getSelection().focusNode,
      editingHost.querySelector("p"),
      "test_setSelection_when_selection_collapsed_in_empty_block_element: focus node should not be changed from the empty <div>"
    );
  })();

  SimpleTest.finish();
});
</script>
</head>
<body>
<div contenteditable></div>
</body>
</html>