/** Test for Bug 604532 **/
SimpleTest.waitForExplicitFinish();
SimpleTest.waitForFocus(function() { var i = document.querySelector("input");
i.focus();
i.value = "foo";
synthesizeKey("A", {accelKey: true});
is(i.selectionStart, 0, "Selection should start at 0 before appending");
is(i.selectionEnd, 3, "Selection should end at 3 before appending");
synthesizeKey("KEY_ArrowRight");
sendString("x");
is(i.value, "foox", "The text should be appended correctly");
synthesizeKey("A", {accelKey: true});
is(i.selectionStart, 0, "Selection should start at 0 after appending");
is(i.selectionEnd, 4, "Selection should end at 4 after appending");
SimpleTest.finish();
});
</script>
</pre>
</body>
</html>
¤ Dauer der Verarbeitung: 0.17 Sekunden
(vorverarbeitet)
¤
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 ist noch experimentell.