mirror of
https://github.com/daijro/camoufox.git
synced 2026-08-23 08:00:06 +00:00
68216153f3
Adds Playwright's async tests to ensure that functionality is not broken.
21 lines
604 B
HTML
21 lines
604 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Textarea test</title>
|
|
</head>
|
|
<body>
|
|
<textarea spellcheck="false"></textarea>
|
|
<input></input>
|
|
<div contenteditable="true"></div>
|
|
<div class="plain">Plain div</div>
|
|
<script src='mouse-helper.js'></script>
|
|
<script>
|
|
window.result = '';
|
|
let textarea = document.querySelector('textarea');
|
|
textarea.addEventListener('input', () => result = textarea.value, false);
|
|
let input = document.querySelector('input');
|
|
input.addEventListener('input', () => result = input.value, false);
|
|
</script>
|
|
</body>
|
|
</html>
|