summaryrefslogtreecommitdiffstats
path: root/editor/spellchecker/tests/test_bug1368544.html
blob: 4a182615a8afd3df1dbbb0967ed5d4aab50a5038 (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
<!DOCTYPE html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi=id=1368544
-->
<html>
<head>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script src="/tests/SimpleTest/EventUtils.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1368544">Mozilla Bug 1368544</a>
<div id="display"></div>
<textarea id=textarea></textarea>
<pre id="test">
</pre>

<script class="testbody">
function hasEmptyTextNode(div) {
  return div.firstChild.nodeType === Node.TEXT_NODE && div.firstChild.length === 0;
}

SimpleTest.waitForExplicitFinish();
SimpleTest.waitForFocus(() => {
  let textarea = document.getElementById("textarea");
  let editor = SpecialPowers.wrap(textarea).editor;

  let spellChecker = SpecialPowers.Cu.createSpellChecker();
  spellChecker.InitSpellChecker(editor, false);

  textarea.focus();

  const { onSpellCheck } = SpecialPowers.ChromeUtils.import(
    "resource://testing-common/AsyncSpellCheckTestHelper.jsm"
  );
  onSpellCheck(textarea, () => {
    spellChecker.UpdateCurrentDictionary(() => {
      textarea.value = "ABC";
      ok(editor.rootElement.hasChildNodes(),
         "editor of textarea has child nodes");
      sendString("D");
      is(textarea.value, "ABCD", "D is last character");
      ok(editor.rootElement.hasChildNodes(),
         "editor of textarea has child nodes");
      textarea.value = "";
      ok(editor.rootElement.hasChildNodes(),
         "editor of textarea has child node even if value is empty");

      sendString("AAA");
      synthesizeKey("KEY_Backspace", {repeat: 3});
      is(textarea.value, "", "value is empty");
      ok(editor.rootElement.hasChildNodes(),
         "editor of textarea has child node even if value is empty");

      textarea.value = "ABC";
      SpecialPowers.wrap(textarea).setUserInput("");
      is(textarea.value, "",
         "textarea should become empty when setUserInput() is called with empty string");
      ok(hasEmptyTextNode(editor.rootElement),
            "editor of textarea should only have an empty text node when user input emulation set the value to empty");
      todo(editor.rootElement.childNodes.length === 1, "editor of textarea should only have a single child");
      if (editor.rootElement.childNodes.length > 1) {
        is(editor.rootElement.childNodes.length, 2, "There should be only one additional <br> node");
        is(editor.rootElement.lastChild.tagName.toLowerCase(), "br", "The node should be a <br> element node");
        ok(!SpecialPowers.wrap(editor.rootElement.lastChild).isPaddingForEmptyEditor,
            "The <br> should not be a padding <br> element");
      }
      textarea.value = "ABC";
      synthesizeKey("KEY_Enter", {repeat: 2});
      textarea.value = "";
      ok(editor.rootElement.hasChildNodes(),
         "editor of textarea has child node even if value is empty");

      sendString("AAA");
      is(textarea.value, "AAA", "value is AAA");
      textarea.addEventListener("keyup", (e) => {
        if (e.key == "Enter") {
          textarea.value = "";
          ok(editor.rootElement.hasChildNodes(),
             "editor of textarea has child node even if value is empty");
          SimpleTest.finish();
        }
      });

      synthesizeKey("KEY_Enter");
    });
 });
});
</script>
</body>
</html>