summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/tests/test_bug790475.html
blob: d30b14b3120f32d03d47eb4d9adcb47af04fac33 (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=790475
-->
<head>
  <title>Test for Bug 790475</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
  <script src="/tests/SimpleTest/EventUtils.js"></script>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=790475">Mozilla Bug 790475</a>
<p id="display"></p>
<div id="content" style="display: none"></div>
<pre id="test">
<script type="application/javascript">

/**
 * Test for Bug 790475
 *
 * Tests that inline spell checking works properly through adjacent text nodes.
 */

SimpleTest.waitForExplicitFinish();
addLoadEvent(runTest);

var gMisspeltWords;

function getEditor() {
  var editingSession = SpecialPowers.wrap(window).docShell.editingSession;
  return editingSession.getEditorForWindow(window);
}

function getSpellCheckSelection() {
  var editor = getEditor();
  var selcon = editor.selectionController;
  return selcon.getSelection(selcon.SELECTION_SPELLCHECK);
}

function runTest() {
  gMisspeltWords = [];
  var edit = document.getElementById("edit");
  edit.focus();

  SimpleTest.executeSoon(function() {
    gMisspeltWords = [];
    is(isSpellingCheckOk(), true, "Should not find any misspellings yet.");

    var newTextNode = document.createTextNode("ing string");
    edit.appendChild(newTextNode);
    var editor = getEditor();
    var sel = editor.selection;
    sel.collapse(newTextNode, newTextNode.textContent.length);
    sendString("!");

    edit.blur();

    SimpleTest.executeSoon(function() {
      is(isSpellingCheckOk(), true, "Should not have found any misspellings. ");
      SimpleTest.finish();
    });
  });
}

function isSpellingCheckOk() {
  var sel = getSpellCheckSelection();
  var numWords = sel.rangeCount;

  is(numWords, gMisspeltWords.length, "Correct number of misspellings and words.");

  if (numWords != gMisspeltWords.length)
    return false;

  for (var i = 0; i < numWords; i++) {
    var word = sel.getRangeAt(i);
    is(word, gMisspeltWords[i], "Misspelling is what we think it is.");
    if (word != gMisspeltWords[i])
      return false;
  }
  return true;
}

</script>
</pre>

<div id="edit" contenteditable="true">This is a test</div>

</body>
</html>