mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
14 lines
297 B
HTML
14 lines
297 B
HTML
<!DOCTYPE HTML><html><head>
|
|
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
|
|
</head>
|
|
<body>
|
|
<textarea id="t" rows="4"></textarea>
|
|
<script>
|
|
var area = document.getElementById('t');
|
|
area.focus();
|
|
|
|
sendKey('ENTER'); // press Enter once
|
|
</script>
|
|
</body>
|
|
</html>
|