2010-09-24 12:10:53 -07:00
|
|
|
<!DOCTYPE HTML><html><head>
|
2011-06-29 11:22:39 -07:00
|
|
|
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
|
2010-09-24 12:10:53 -07:00
|
|
|
</head>
|
|
|
|
<body>
|
2014-02-01 08:54:13 -08:00
|
|
|
<textarea maxlength="3" spellcheck="false" style="-moz-appearance: none"></textarea>
|
2010-09-24 12:10:53 -07:00
|
|
|
<script>
|
|
|
|
var t = document.querySelector("textarea");
|
|
|
|
t.focus();
|
|
|
|
|
|
|
|
synthesizeKey("a", {});
|
|
|
|
synthesizeKey("b", {});
|
2014-02-14 16:57:39 -08:00
|
|
|
synthesizeKey("VK_RETURN", {});
|
2010-09-24 12:10:53 -07:00
|
|
|
synthesizeKey("c", {});
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|