mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
16 lines
392 B
HTML
16 lines
392 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Textarea test</title>
|
|
</head>
|
|
<body>
|
|
<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>
|