mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 21:28:04 +02:00
11 lines
341 B
HTML
11 lines
341 B
HTML
<html><body>
|
|
<button>sendMouseEvent</button>
|
|
</body><script>
|
|
function changeHash(e) {
|
|
document.location.hash = e.type;
|
|
};
|
|
window.addEventListener('mousedown', changeHash);
|
|
window.addEventListener('mousemove', changeHash);
|
|
window.addEventListener('mouseup', changeHash);
|
|
window.addEventListener('click', changeHash, true);
|
|
</script></html>
|