mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-16 17:33:08 +09:00
16 lines
416 B
HTML
16 lines
416 B
HTML
<!DOCTYPE HTML><html><head>
|
|
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
|
|
</head>
|
|
<body>
|
|
<textarea maxlength="3" spellcheck="false" style="-moz-appearance: none"></textarea>
|
|
<script>
|
|
var t = document.querySelector("textarea");
|
|
t.focus();
|
|
|
|
synthesizeKey("a", {});
|
|
synthesizeKey("b", {});
|
|
synthesizeKey("VK_RETURN", {});
|
|
synthesizeKey("c", {});
|
|
</script>
|
|
</body>
|
|
</html>
|