<textarea id="de-DE" lang="de-DE" onfocus="deFocus()">German heute ist ein guter Tag</textarea>
<textarea id="en-US" lang="en-US" onfocus="enFocus()">Nogoodword today is a nice day</textarea>
function deFocus() {
elem_de = document.getElementById("de-DE");
editor_de = SpecialPowers.wrap(elem_de).editor;
editor_de.setSpellcheckUserOverride(true); var inlineSpellChecker = editor_de.getInlineSpellChecker(true);
maybeOnSpellCheck(elem_de, function() { var spellchecker = inlineSpellChecker.spellChecker;
try { var currentDictionaries = spellchecker.getCurrentDictionaries();
} catch (e) {}
// Check that the German dictionary is loaded and that the spell check has worked.
is(currentDictionaries.length, 1, "expected one dictionary");
is(currentDictionaries[0], "de-DE", "expected de-DE");
is(getMisspelledWords(editor_de), "German", "one misspelled word expected: German");
// Now focus the other textarea, which requires English spelling.
document.getElementById("en-US").focus();
});
}
function enFocus() { var elem_en = document.getElementById("en-US"); var editor_en = SpecialPowers.wrap(elem_en).editor;
editor_en.setSpellcheckUserOverride(true); var inlineSpellChecker = editor_en.getInlineSpellChecker(true);
onSpellCheck(elem_en, async function() {
let spellchecker = inlineSpellChecker.spellChecker;
let currentDictionaries = spellchecker.getCurrentDictionaries();
// Check that the English dictionary is loaded and that the spell check has worked.
is(currentDictionaries.length, 1, "expected one dictionary");
is(currentDictionaries[0], "en-US", "expected en-US");
is(getMisspelledWords(editor_en), "Nogoodword", "one misspelled word expected: Nogoodword");
// So far all was boring. The important thing is whether the spell check result
// in the de-DE editor is still the same. After losing focus, no spell check
// updates should take place there.
is(getMisspelledWords(editor_de), "German", "one misspelled word expected: German");
// Remove the fake de_DE dictionary again.
await script.sendQuery("destroy");
// Focus again, so the spelling gets updated, but before we need to kill the focus handler.
elem_de.onfocus = null;
elem_de.blur();
elem_de.focus();
// After removal, the de_DE editor should refresh the spelling with en-US.
maybeOnSpellCheck(elem_de, function() {
spellchecker = inlineSpellChecker.spellChecker;
try {
currentDictionaries = spellchecker.getCurrentDictionaries();
} catch (e) {}
// Check that the default English dictionary is loaded and that the spell check has worked.
is(currentDictionaries.length, 1, "expected one dictionary");
is(currentDictionaries[0], "en-US", "expected en-US");
// eslint-disable-next-line no-useless-concat
is(getMisspelledWords(editor_de), "heute" + "ist" + "ein" + "guter", "some misspelled words expected: heute ist ein guter");
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.