blob: 771575aecef3f171746553714a8717862863a9e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE HTML><html><head>
<script src="/tests/SimpleTest/EventUtils.js"></script>
</head>
<body>
<textarea id="t" rows="4" style="-moz-appearance: none"></textarea>
<script>
var area = document.getElementById('t');
area.focus();
sendKey('RETURN'); // press Enter once
</script>
</body>
</html>
|