2011-07-04 22:42:28 -07:00
|
|
|
<html class="reftest-wait">
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
|
|
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
|
|
|
|
</head>
|
|
|
|
<body onload="start()">
|
2014-02-01 08:54:13 -08:00
|
|
|
<textarea onfocus="done()" spellcheck="false" style="-moz-appearance: none">אב
|
2011-07-04 22:42:28 -07:00
|
|
|
ג</textarea>
|
|
|
|
<script>
|
|
|
|
var textarea = document.querySelector("textarea");
|
|
|
|
function start() {
|
|
|
|
textarea.focus();
|
|
|
|
}
|
|
|
|
function done() {
|
|
|
|
synthesizeKey("VK_LEFT", {});
|
|
|
|
synthesizeKey("VK_LEFT", {});
|
|
|
|
document.documentElement.removeAttribute("class");
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|