mirror of
https://github.com/servo/servo
synced 2026-04-25 17:15:48 +02:00
15 lines
436 B
HTML
15 lines
436 B
HTML
<body>
|
|
<input id="clicked">
|
|
<script>
|
|
document.getElementById("clicked").addEventListener("mousedown", function () {
|
|
window.alert("mousedown"); },
|
|
false);
|
|
document.getElementById("clicked").addEventListener('mouseup', function() {
|
|
window.alert("mouseup"); },
|
|
false);
|
|
document.getElementById("clicked").addEventListener("click", function() {
|
|
window.alert("clicked"); },
|
|
false);
|
|
</script>
|
|
</body>
|