mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
17 lines
366 B
HTML
17 lines
366 B
HTML
<!DOCTYPE HTML><html><head>
|
|
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
|
|
</head>
|
|
<body>
|
|
<textarea></textarea>
|
|
<script>
|
|
var t = document.querySelector("textarea");
|
|
t.focus();
|
|
|
|
synthesizeKey("a", {});
|
|
synthesizeKey("A", {accelKey: true});
|
|
synthesizeKey("VK_RIGHT", {});
|
|
synthesizeKey("b", {});
|
|
</script>
|
|
</body>
|
|
</html>
|