2011-07-05 09:42:28 +04:00
|
|
|
<html class="reftest-wait">
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
2019-04-16 06:50:44 +03:00
|
|
|
<script src="/tests/SimpleTest/EventUtils.js"></script>
|
2011-07-05 09:42:28 +04:00
|
|
|
</head>
|
|
|
|
<body onload="start()">
|
2017-05-21 12:15:00 +03:00
|
|
|
<textarea rows="3" onfocus="done()" spellcheck="false" style="-moz-appearance: none">אב
|
2011-07-05 09:42:28 +04:00
|
|
|
ג</textarea>
|
|
|
|
<script>
|
|
|
|
var textarea = document.querySelector("textarea");
|
|
|
|
function start() {
|
|
|
|
textarea.focus();
|
|
|
|
}
|
|
|
|
function done() {
|
2018-02-14 22:15:39 +03:00
|
|
|
synthesizeKey("KEY_ArrowLeft");
|
|
|
|
synthesizeKey("KEY_ArrowLeft");
|
2011-07-05 09:42:28 +04:00
|
|
|
document.documentElement.removeAttribute("class");
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|