puppeteer/test/assets/input/textarea.html

16 lines
392 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<title>Textarea test</title>
</head>
<body>
2023-09-21 20:50:36 +00:00
<textarea rows="5" cols="20"></textarea>
<script src='mouse-helper.js'></script>
<script>
globalThis.result = '';
globalThis.textarea = document.querySelector('textarea');
textarea.addEventListener('input', () => result = textarea.value, false);
</script>
</body>
</html>