blob: 141198b59ef4e6d2d982672b546f2beb889e51fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE HTML><html><head>
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
</head>
<body>
<textarea spellcheck="false" style="-moz-appearance: none"></textarea>
<script>
var t = document.querySelector("textarea");
t.focus();
synthesizeKey("a", {});
synthesizeKey("A", {accelKey: true});
synthesizeKey("VK_RIGHT", {});
synthesizeKey("b", {});
</script>
</body>
</html>
|