2011-07-05 09:42:28 +04: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()">
|
2015-01-14 21:15:26 +03:00
|
|
|
<textarea rows="3" onfocus="typeIntoMe()" spellcheck="false" style="-moz-appearance: none"></textarea>
|
2011-07-05 09:42:28 +04:00
|
|
|
<script>
|
|
|
|
function start() {
|
|
|
|
document.querySelector("textarea").focus();
|
|
|
|
}
|
|
|
|
function typeIntoMe() {
|
|
|
|
setTimeout(function() {
|
|
|
|
synthesizeKey("א", {});
|
2014-02-15 04:57:39 +04:00
|
|
|
synthesizeKey("VK_RETURN", {});
|
2011-07-05 09:42:28 +04:00
|
|
|
synthesizeKey("ג", {});
|
|
|
|
synthesizeKey("VK_UP", {});
|
|
|
|
synthesizeKey("VK_END", {});
|
|
|
|
synthesizeKey("ב", {});
|
|
|
|
document.documentElement.removeAttribute("class");
|
|
|
|
}, 0);
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|