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
16 lines
329 B
HTML
16 lines
329 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Button test</title>
|
|
</head>
|
|
<body>
|
|
<script src="mouse-helper.js"></script>
|
|
<button onclick="clicked();">Click target</button>
|
|
<script>
|
|
window.result = 'Was not clicked';
|
|
function clicked() {
|
|
result = 'Clicked';
|
|
}
|
|
</script>
|
|
</body>
|
|
</html> |