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.importESModule( "resource://testing-common/AsyncSpellCheckTestHelper.sys.mjs"
);
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 node");
is(editor.rootElement.lastChild.tagName.toLowerCase(), "br", "The node should be a element node");
ok(!SpecialPowers.wrap(editor.rootElement.lastChild).isPaddingForEmptyEditor, "The should not be a padding 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();
}
});
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.