98ee35655f
This patch: - adds Mouse class which holds mouse state and implements mouse primitives, such as moving, button down and button up. - implements high-level mouse api, such as `page.click` and `page.hover`. References #40, References #89
15 lines
361 B
HTML
15 lines
361 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Textarea test</title>
|
|
</head>
|
|
<body>
|
|
<textarea></textarea>
|
|
<script src='mouse-helper.js'></script>
|
|
<script>
|
|
window.result = '';
|
|
let textarea = document.querySelector('textarea');
|
|
textarea.addEventListener('input', () => result = textarea.value, false);
|
|
</script>
|
|
</body>
|
|
</html> |